返回列表 發帖
a="apple"
b="banana"
pi=3.14159
c=123
d=c+pi
dd=str(c)+str(pi)
test1=str(123)
test2=int(test1)
test3=int("567")
print("test")
print(float(dd))
print("test")

TOP

返回列表