• Welcome to ForumKorner!
    Join today and become a part of the community.

Python [Programming Language]

Phreak

User is banned.
Reputation
0
I'm actually learning Python right now.
It's a pretty awesome language from what i've seen so far.
Do you recommend any tutorials? How did you learn Python?
 

Wiggles

Active Member
Reputation
0
Python has made me Rage multiple times.

I'll stick with .NET
 

Phreak

User is banned.
Reputation
0
There is a really good tutorial in the Python section of HF.
It's the sticky and it's what I'm using to learn.
 

Zammyslave

Active Member
Reputation
0
Phreak said:
There is a really good tutorial in the Python section of HF.
It's the sticky and it's what I'm using to learn.

Oh, yeah. I read that one.

Going to download "A Byte of Python" now, and see if I can learn something.
 

Phreak

User is banned.
Reputation
0
I had a question.
I'm trying to do this script:
I originally posted this on HeadRush's Python tutorial, however, thought I might get a faster reply here.

Code:
#!/usr/bin/python
import time
yourName = str(raw_input("Please enter your name: "))
if yourName == "John":
    print "You are learning python!"
    time.sleep(2)

elif yourName == "HeadRush":
    print "You made this tutorial!"
    time.sleep(2)

else:
    print "Oh welcome to this script."
    time.sleep(2)

print "Goodbye this is the end of the if, elif, and else statement script."
time.sleep(2)

However, every time I go to run it, the window doesn't stay open.
I've had several problems with this and the only script I could get to stay open was the User Input one.
Am I doing something wrong? Is there a way to make sure the cmd stays open?
 

Phreak

User is banned.
Reputation
0

I wish I could get that for my epic Lua Tutorial, however, I doubt Omni will notice me. /cry

http://www.hackforums.net/showthread.php?tid=1231011