+ 1
How can I input for calculations
pyrhon
4 Answers
+ 5
BroFar thanks bro
Welcome Mohamed Aazir Abdul Hathi
+ 4
You can use input() to get value from users
+ 3
Wunder inputting integers or floats in python is as simple as
x = int(input()) # integer
y = float(input()) #float
The one mentioned by Mohamed Aazir Abdul Hathi is actually for strings
+ 2
Thanks guys...that was really helpful