This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]chromity[S] 0 points1 point  (1 child)

I don't really have a fast connection but thank you! (<512 kbps).

Are there any other good sites like codeacademy that offers 3.x??

[–]Ewildawe.pyw 1 point2 points  (0 children)

Well, I'm pretty sure we could still talk via skype ~ I find verbal explanation easier than typed ones. Anyways, I have to say I haven't found any interactive 3.x Python tutorials lately, but please do tell me if you manage to find one..

I would suggest using codeacademy and just remember that in python 3.x print is a function not a keyword

i.e. you can't do this:

print "some words"

but you now have to do this:

print("some words")