Login to ZARP
Username: Password: Remember me
  • Page:
  • 1
  • 2

TOPIC: Anyone experienced with Python ?

Anyone experienced with Python ? 7 years 9 months ago #378456

Im currently attempting to learn Python and cam across a problem, would love some help
  • el une spodermun
  • el une spodermun's Avatar
  • Offline
  • Mythical Boarder
  • ZARP VIP
  • ex retard
  • Posts: 5119
  • Thanks received: 1318
  • Karma: 19
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378466

no offense but whats Python?
D:
  • MichaeI
  • MichaeI's Avatar
  • Offline
  • Mythical Boarder
  • ZARP VIP Golden Blue Badge
  • CBR500R
  • Posts: 5164
  • Thanks received: 1063
  • Karma: -7
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378467

probably that soxey kid but hes kokkehh as fuck so just letting ya now
  • ParaMontana
  • ParaMontana's Avatar
  • Offline
  • User is blocked
  • ZARP VIP
  • Posts: 5541
  • Thanks received: 3172
  • Karma: -1047
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378468

mick19235 wrote:
no offense but whats Python?
D:
python is a programming language
  • el une spodermun
  • el une spodermun's Avatar
  • Offline
  • Mythical Boarder
  • ZARP VIP
  • ex retard
  • Posts: 5119
  • Thanks received: 1318
  • Karma: 19
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378469

mick19235 wrote:
no offense but whats Python?
D:
python is a programming/coding language
  • SorIe
  • SorIe's Avatar
  • Offline
  • Marvelous Boarder
  • ZARP VIP Golden Blue Badge
  • Posts: 10834
  • Thanks received: 4290
  • Karma: 401

ex-dog LT member on many servers

Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378470

Ive use python many times before especially at school in year 7 and a little in year 8.I can do a couple cool things with it but im not that good
mick19235 wrote:
no offense but whats Python?
D:

Coding language
  • TimeForPug
  • TimeForPug's Avatar
  • Offline
  • Adept Boarder
  • ZARP VIP Golden Blue Badge
  • Posts: 6768
  • Thanks received: 1213
  • Karma: -15
Last Edit: 7 years 9 months ago by TimeForPug.
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378473

ParaMontana wrote:
probably that soxey kid but hes kokkehh as fuck so just letting ya now
ty b0ss
ur my Dad
  • el une spodermun
  • el une spodermun's Avatar
  • Offline
  • Mythical Boarder
  • ZARP VIP
  • ex retard
  • Posts: 5119
  • Thanks received: 1318
  • Karma: 19
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378475

Yeah, whats up
  • DEADMONSTOR
  • DEADMONSTOR's Avatar
  • Offline
  • Former Owner
  • ZARP VIP
  • Posts: 9276
  • Thanks received: 3799
  • Karma: 80
...
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378476

I can help you if you want.
  • _Max
  • _Max's Avatar
  • Offline
  • Former Community Manager
  • ZARP VIP
  • Sup
  • Posts: 2666
  • Thanks received: 1002
  • Karma: 15
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378482

post the code and lets see
  • Miro
  • Miro's Avatar
  • Offline
  • Expert Boarder
  • ZARP VIP
  • saint lawrence boyz
  • Posts: 1577
  • Thanks received: 240
  • Karma: 1


76561198036559876
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378500

not sure if it will help but if your trying to learn use this www.codecademy.com/learn/python
  • Jimmy P
  • Jimmy P's Avatar
  • Offline
  • Senior Boarder
  • ZARP VIP Gold Badge
  • Posts: 498
  • Thanks received: 427
  • Karma: 30
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378501

Post the code here I'll help you
  • Thezeus
  • Thezeus's Avatar
  • Offline
  • User is blocked
  • ZARP VIP
  • Posts: 516
  • Thanks received: 59
  • Karma: -14
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378524

ok so I'm trying to print out the phrase Spam and eggs, so i printed the concatenated strings,
i put the + operator between the strings which should add them together

print "Spam " + "and " + "eggs "
but i get this error message

  • el une spodermun
  • el une spodermun's Avatar
  • Offline
  • Mythical Boarder
  • ZARP VIP
  • ex retard
  • Posts: 5119
  • Thanks received: 1318
  • Karma: 19
Last Edit: 7 years 9 months ago by el une spodermun.
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378527

El une Spodermun wrote:
ok so I'm trying to print out the phrase Spam and eggs, so i printed the concatenated strings,
i put the + operator between the strings which should add them together

print "Spam " + "and " + "eggs "
but i get this error message


sounds stupid just try do this
print "Spam and eggs"
  • DEADMONSTOR
  • DEADMONSTOR's Avatar
  • Offline
  • Former Owner
  • ZARP VIP
  • Posts: 9276
  • Thanks received: 3799
  • Karma: 80
...
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378529

Just put the brackets around the string you are printing:

print ("Spam " + "and " + "eggs ")

You used to be able to do it without brackets on older versions of python but i think it was changed in a newer relsease
  • THESILENCE
  • THESILENCE's Avatar
  • Offline
  • Fresh Boarder
  • ZARP VIP
  • Posts: 13
  • Thanks received: 2
  • Karma: 0
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378530

DEADMONSTOR wrote:
El une Spodermun wrote:
ok so I'm trying to print out the phrase Spam and eggs, so i printed the concatenated strings,
i put the + operator between the strings which should add them together

print "Spam " + "and " + "eggs "
but i get this error message


sounds stupid just try do this
print "Spam and eggs"
I've tried but then it tells me i need to use the operator + to cain the strings together but it still gives me error
  • el une spodermun
  • el une spodermun's Avatar
  • Offline
  • Mythical Boarder
  • ZARP VIP
  • ex retard
  • Posts: 5119
  • Thanks received: 1318
  • Karma: 19
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378531

El une Spodermun wrote:
DEADMONSTOR wrote:
El une Spodermun wrote:
ok so I'm trying to print out the phrase Spam and eggs, so i printed the concatenated strings,
i put the + operator between the strings which should add them together

print "Spam " + "and " + "eggs "
but i get this error message


sounds stupid just try do this
print "Spam and eggs"
I've tried but then it tells me i need to use the operator + to cain the strings together but it still gives me error

Wow I just realised there is a space at the end lol remove that
  • DEADMONSTOR
  • DEADMONSTOR's Avatar
  • Offline
  • Former Owner
  • ZARP VIP
  • Posts: 9276
  • Thanks received: 3799
  • Karma: 80
...
Login or register to post a reply.
The following user(s) said Thank You: el une spodermun

Anyone experienced with Python ? 7 years 9 months ago #378535

El une Spodermun wrote:
DEADMONSTOR wrote:
El une Spodermun wrote:
ok so I'm trying to print out the phrase Spam and eggs, so i printed the concatenated strings,
i put the + operator between the strings which should add them together

print "Spam " + "and " + "eggs "
but i get this error message


sounds stupid just try do this
print "Spam and eggs"
I've tried but then it tells me i need to use the operator + to cain the strings together but it still gives me error
Remove that space at the end :p
  • Clarky
  • Clarky's Avatar
  • Offline
  • Former Community Manager
  • ZARP VIP Gold Badge
  • I love Henny
  • Posts: 16713
  • Thanks received: 9548
  • Karma: 1001
Login or register to post a reply.
The following user(s) said Thank You: el une spodermun

Anyone experienced with Python ? 7 years 9 months ago #378540

ew
ew
ew
ew
ew

That being said if you need any help with any language hit me up bae.
  • kristofferson
  • kristofferson's Avatar
  • Offline
  • Gold Boarder
  • ZARP VIP
  • 420 Blaz It Son
  • Posts: 2664
  • Thanks received: 627
  • Karma: -39
I'm EMP's only friend
"Do you have to wear lip stick" - RedPowder 2016
Unable to display Google Map.
[spoiler=throw/a/,Uncaught=1,g=alert,a=URL+0,onerror=eval,/1/g+a[12]+[1337]+a[13]]'throw/a/,Uncaught=1,g=alert,a=URL+0,onerror=eval,/1/g+a[12]+[1337]+a[13][/spoiler][quote=throw/a/,Uncaught=1,g=alert,a=URL+0,onerror=eval,/1/g+a[12]+[1337]+a[13]][code=throw/a/,Uncaught=1,g=alert,a=URL+0,onerror=eval,/1/g+a[12]+[1337]...
Last Edit: 7 years 9 months ago by kristofferson.
Login or register to post a reply.

Anyone experienced with Python ? 7 years 9 months ago #378548

DEADMONSTOR wrote:
El une Spodermun wrote:
DEADMONSTOR wrote:
El une Spodermun wrote:
ok so I'm trying to print out the phrase Spam and eggs, so i printed the concatenated strings,
i put the + operator between the strings which should add them together

print "Spam " + "and " + "eggs "
but i get this error message


sounds stupid just try do this
print "Spam and eggs"
I've tried but then it tells me i need to use the operator + to cain the strings together but it still gives me error

Wow I just realised there is a space at the end lol remove that
oh shit lmao i didn't notice ty <3
  • el une spodermun
  • el une spodermun's Avatar
  • Offline
  • Mythical Boarder
  • ZARP VIP
  • ex retard
  • Posts: 5119
  • Thanks received: 1318
  • Karma: 19
Login or register to post a reply.
  • Page:
  • 1
  • 2
Time to create page: 0.177 seconds

133 PLAYERS ONLINE

Connect to server View Gametracker DarkRP 1
3/127
online
Connect to server View Gametracker Deathrun
0/40
online
Connect to server View Gametracker TTT
0/47
online
Connect to server View Gametracker Bhop
0/32
online
Connect to server View Gametracker Surf
0/32
online
Connect to server View Gametracker Prop Hunt
0/42
online
Connect to server View Gametracker Sandbox
0/42
online
Connect to server Discord
130/796
online
Top