import easygui
f = float(easygui.enterbox("please enter a f")
c = (f - 32)*5/9
easygui.msgbox(msg=("the temp is "+str(c)))
# 这个的输出结果是
the temp is 666.6666666666666
import easygui
f = float(easygui.enterbox("please enter a f")
c = (f - 32)*5/9
easygui.msgbox(msg=("the temp is ",str(c)))
# 这个的输出结果是
{the temp is} 666.6666666666666
为啥多了个大括号,这个逗号到底是意味着啥,还是说我的 msg 的用法错了,求解呀?
1
aver4vex 2016-03-06 21:28:12 +08:00
("the temp is ",str(c)) 这是一个元祖
|
2
aver4vex 2016-03-06 21:28:31 +08:00
元祖->元组
|
3
Pzdmultiverse OP @aver4vex 那元组为什么后面的数字没在大括号里面?
|