okay,I'm going through this python tutorial, and according to the
tutorial, I can type this:
however, in my IDLE python shell, when I type
it just gives me a prompt
?
why doesn't it just bring me to line three? I need to have
persistence, cause little snags like these discourage me. I know I
need thicker skin to write code.
any advice is appreciated
tutorial, I can type this:
Code:
myList = [1,2,3,4] for index in range(len(myList)): myList[index] += 1 print myList
Code:
[QUOTE][QUOTE][QUOTE] >>myList = [1,2,3,4] >>for index in range(len(myList)):[/QUOTE][/QUOTE][/QUOTE]
Code:
[QUOTE][QUOTE][QUOTE] >>[/QUOTE][/QUOTE][/QUOTE]
why doesn't it just bring me to line three? I need to have
persistence, cause little snags like these discourage me. I know I
need thicker skin to write code.
any advice is appreciated
Comment