10 - python print函数
【摘要】 1. 使用print 函数输出字符串时,如何用逗号 (,) 分隔
# 使用sep 参数设置字符串之间的分隔符,默认是空格
print('aa', 'bb')
# sep 可以用一个字符串作为分隔符
print('aa', 'bb', sep=',')
12345
aa bb
aa,bb
12
2. 使用print 函数输出字符串时,如何不换行
# 使用end ...
1. 使用print 函数输出字符串时,如何用逗号 (,) 分隔
# 使用sep 参数设置字符串之间的分隔符,默认是空格
print('aa', 'bb')
# sep 可以用一个字符串作为分隔符
print('aa', 'bb', sep=',')
- 1
- 2
- 3
- 4
- 5
aa bb
aa,bb
- 1
- 2
2. 使用print 函数输出字符串时,如何不换行
# 使用end 参数设置结尾符号,默认是换行符
print('hello')
print('world')
print('hello', end=' ')
print('world')
- 1
- 2
- 3
- 4
- 5
- 6
- 7
hello
world
hello world
- 1
- 2
- 3
3. 如何用print 函数格式化输出
# 可以使用 % 格式化字符串
s = 'road'
x = len(s)
print('The length of %s is %d' % (s, x))
from io import StringIO
import sys
old_stdout = sys.stdout
result = StringIO()
sys.stdout = result
print('The length of %s is %d' % (s, x))
sys.stdout = old_stdout
result_str = result.getvalue()
print('result_str', result_str, sep=': ')
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
The length of road is 4
result_str: The length of road is 4
- 1
- 2
文章来源: ruochen.blog.csdn.net,作者:若尘,版权归原作者所有,如需转载,请联系作者。
原文链接:ruochen.blog.csdn.net/article/details/104181079
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)