Answers for "example of input int questions in python with if statement"

0

example of input int questions in python with if statement

print "Enter quantity"
quantity = input()
if quantity*100 > 1000:
  print "Cost is",((quantity*100)-(.1*quantity*100))
else:
  print "Cost is",quantity*100
Posted by: Guest on January-10-2021

Code answers related to "example of input int questions in python with if statement"

Python Answers by Framework

Browse Popular Code Answers by Language