返回列表 發帖
a=b"20"
print("a="+a)
print("b="+b)
c=a+b
d=int(a)+int(b)
print("字串相加: "+c)
print(數字相加: "+str(d))

TOP

返回列表