A value as a condition : Int « Data Type « Python






A value as a condition

 A value as a condition
 

money = int(raw_input("Tips:'? "))

if money:
    print "Ah, I am reminded of a table.  Right this way."
else:
    print "Please, sit.  It may be a while."


           
         
  








Related examples in the same category

1.Define and use intDefine and use int
2.Int: modulus (remainder), power Int: modulus (remainder), power
3.Define and use integerDefine and use integer
4.Int value demoInt value demo
5.Convert String to integer (int)
6.Using Python as a Calculator
7.oct and hex function
8.int function
9.convert integers to octal and hexadecimal strings with a string formatting expression:
10.Compare integers using if structures, relational operators and equality operators.Compare integers using if structures, relational operators and equality operators.