a = 10 b = 20 # 输出:可以一次打印多个数据 # sep:多个数据的分割内容 # end:结束时的内容,默认是'\n',表示换行 print(a,b) print(a, b, sep=',', end='')