标签: python floating-point integer expression
我可以将整数转换为浮点数吗?我很好奇,因为我只是在学习python,所以我不确定是否可行。
答案 0 :(得分:1)
使用此:
x = 1337 # Integer y = float(x) # This is the float print(y) # 1337.0