'Reduce a Space between unicode '\u2261' in pyqt5
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)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
