返回列表 發帖
a=123
b=456
print(a, "python", b ,sep=" ")
print(a, "python", b ,sep="-")
print(a, "python", b ,sep="-", end="!!!" "\n")
print(a, "python", b ,sep="-", end="!!!")

TOP

返回列表