减少Unicode之间的空间' \ u2261'在pyqt5中
如何减少Unicode “ \ u2261” 之间的空间或没有空间。我需要连续打印“ \ u2261”,而没有空间。尝试以下内容,但是在所有情况下,两个字符之间都有一些空白。
print('\u2261'+'\u2261')
print('\u2261'*3)
print('\u2261'*3,sep="")
list =['\u2261','\u2261','\u2261']
str =""
str2 = str.join(list)
print(str2)
How to reduce the space or no space between Unicode "\u2261". I need to print "\u2261" continuously, without space. Try the following things, but in all cases, there is some blank space between two characters.
print('\u2261'+'\u2261')
print('\u2261'*3)
print('\u2261'*3,sep="")
list =['\u2261','\u2261','\u2261']
str =""
str2 = str.join(list)
print(str2)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
更多
发布评论