|
||||||
| Python Discussion forum for Python, a high-level language with simple syntax, but yet powerful. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
I get an error for this code:
(there are indents just not showing on this forum) #small program to introduce members of the family print "Please enter the first name of a family member.", " ", "the choices are john, jane, jim, and scruffle." text = input() if text = "john" print "this is john" elif text = jane print "this is jane" elif text = jim print "this is jim" elif text = scruffle print "RUFF!!" |
| Sponsored Links |
|
|
|
|||
|
Quote:
![]() Also with my revised code: Code:
#small program to introduce members of the family
print "Please enter the first name of a family member.", " ", "the choices are john, jane, jim, and scruffle."
text = raw_input()
if text == "john"
print "this is john":
elif text == jane
print "this is jane":
elif text == jim
print "this is jim":
elif text == scruffle
print "RUFF!!":
else:
print "Please retype!"
![]() Last edited by hds272; 10-15-2007 at 10:00 PM. |
|
|||||
|
Before the explanation of #3, I'll help you with the "invalid syntax" error. You need to add a colon (
in the end, right after "john" It will fix it. Look at my #4 in my last post.To the #3. Many programming languages (C, C++, C#, Java, Visual Basic, many LISP-dialects, etc.) and also Python, of course, uses special techniques to identify variables, strings, characters. It's different from language to language, but usually you're using single-quotes for characters, double-quotes for strings and nothing for variables. Try to pick up some tutorial, it will clear it up for you - much better than I tried - and you'll understand. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |