python中如何输出空格?

2024年04月28日 MongoDB Python51

python中输出空格的方法:

1、使用“\t”实现

\t:横向制表符。运行出来的结果中会有空格

示例:

输出结果如下:

2、在print函数中使用“,”号

示例

a=1
b=2
print(a,b)

输出结果:

更多Python知识请关注Python视频教程栏目。

本文链接:http://so.lmcjl.com/news/3274/

展开阅读全文