print("输出函数用print")
print("默认它是换行的")
print("可以有多个参数", 123, "并且不限类型")

print("通过修改end参数的值让它不换行")

print(123, end="")
print(456, end="")
print("~~")