打印最后一个'\n' python中使用print方法打印字符

发布于 2024-10-04 17:01:44 字数 346 浏览 3 评论 0原文

想象一下,我在文件 test.py 中有以下代码:

for x in range(1,11):
     print x

这将打印:

$myuser: python test.py
1
2
3
4
5
6
7
8
9
10
$myuser:

但是,我希望它打印:

$myuser: python test.py
1
2
3
4
5
6
7
8
9
10

$myuser:

注意最后一个 '\n' 字符,在正常情况下会丢失。如何获取最后一个换行符?

Imagine I have the following code in file test.py:

for x in range(1,11):
     print x

This will print:

$myuser: python test.py
1
2
3
4
5
6
7
8
9
10
$myuser:

However, I want it to print:

$myuser: python test.py
1
2
3
4
5
6
7
8
9
10

$myuser:

Notice the last '\n' char, that is missing in the normal case. How do I get this last newline char?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

在你怀里撒娇 2024-10-11 17:01:44

什么都不缺;如果末尾没有换行符,最后一行将类似于 10$myuser:

也许您想要:

for x in range(1,11):
  print x
print

Nothing is missing; if there wasn't a newline at the end the last line would look like 10$myuser:

Perhaps you want:

for x in range(1,11):
  print x
print
一城柳絮吹成雪 2024-10-11 17:01:44

只需在循环后放置一个裸露的 print 即可。

Just put a bare print after the loop.

夜访吸血鬼 2024-10-11 17:01:44

这就是我喜欢 python3 的原因:

print(*range(5), sep='\n',end='\n\n')

实际上这很丑陋:

for i in range(5)+['']:
    print i

That's why I love python3:

print(*range(5), sep='\n',end='\n\n')

actually this is ugly:

for i in range(5)+['']:
    print i
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文