+ 1
Hey guys how would I work around this error
x=input() y=(x*1.8)+32 can't multiply sequence by non-int of type 'float'
3 Antworten
+ 4
Try this:
x = int(input())
y = (x*1.8)+32
print(y)
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2492/
+ 2
Haha simple fix thanks bud
+ 2
You're welcome. Happy coding!