如何在 Python 中的 print() 中的 ',' 后添加没有 space 的新行

How to add the new line without space after ',' in print() in Python

有两个数据,正在打印它们的长度。 代码:

print(len(author),'\n',len(authorUnique))

并输出:

5439 
 4443

我想得到:

5439 
4443

我该怎么做才能得到我想要的?

不要一下子打印出来!将其拆分为两个单独的 print 语句要简单得多,这也解决了您的问题:

print(len(author))
print(len(authorUnique))

如果您只想使用一个打印语句,但是,您需要指定正确的分隔符,如下所示:

print(len(author), len(authorUnique), sep='\n')