Welcome to Dream.In.Code
Getting Help is Easy!

Join 132,626 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,057 people online right now. Registration is fast and FREE... Join Now!




Python - Else If Syntax

 
Reply to this topicStart new topic

Python - Else If Syntax

Gunman
post 24 Oct, 2005 - 12:09 PM
Post #1


New D.I.C Head

*
Joined: 24 Oct, 2005
Posts: 8


My Contributions


Hey i'm kinda of new in python programming and i have run into this prob.
Can't seem to work this code ..

CODE

#This program uses the if else if program to create the high low game

number = 30
guess  = 0

while guess!=number:                          
   guess = input("Guess : ")                  

   if guess > number:
       print "Guess is greater than number"

       elif guess < number:
           print "Guess is smaller than number"

           print "Just right!"


This post has been edited by Gunman: 24 Oct, 2005 - 12:11 PM
User is offlineProfile CardPM

Go to the top of the page

Amadeus
post 24 Oct, 2005 - 01:10 PM
Post #2


g++ -o drink whiskey.cpp

Group Icon
Joined: 12 Jul, 2002
Posts: 12,176



Thanked 33 times

Dream Kudos: 25
My Contributions


You've got a few syntax problems...try the following:
CODE

#This program uses the if else if program to create the high low game

number = 30
guess  = 0

while guess!=number:                          
  guess = int(input("Guess : "))                  

  if guess > number:
      print "Guess is greater than number"

  elif guess < number:
          print "Guess is smaller than number"
  else:
     print "Just right!"

An else statement was required, and casting the input is good idea as well.
User is offlineProfile CardPM

Go to the top of the page

Gunman
post 25 Oct, 2005 - 03:14 AM
Post #3


New D.I.C Head

*
Joined: 24 Oct, 2005
Posts: 8


My Contributions


Great it worked . Thanx for help .
User is offlineProfile CardPM

Go to the top of the page

Amadeus
post 25 Oct, 2005 - 04:34 AM
Post #4


g++ -o drink whiskey.cpp

Group Icon
Joined: 12 Jul, 2002
Posts: 12,176



Thanked 33 times

Dream Kudos: 25
My Contributions


Anytime...that's what we're here for. smile.gif
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 11/23/08 03:34AM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month