Read a number and do calculation : Multiply « Language Basics « Python






Read a number and do calculation

Read a number and do calculation


num = raw_input("Hi.  A number: ")

print  int(num) * 2.5

           
       








Related examples in the same category

1.Read a number and time int valueRead a number and time int value
2.Product in PythonProduct in Python