I'd like to create menu boxes in Python with the following ascii characteres:
ASCII code 200 = ╚ ( Box drawing character double line lower left corner )
ASCII code 201 = ╔ ( Box drawing character double line upper left corner )
ASCII code 202 = ╩ ( Box drawing character double line horizontal and up )
ASCII code 203 = ╦ ( Box drawing character double line horizontal down )
ASCII code 204 = ╠ ( Box drawing character double line vertical and right )
ASCII code 205 = ═ ( Box drawing character double horizontal line )
ASCII code 206 = ╬ ( Box drawing character double line horizontal vertical )
However it seems that these are not supported. When I use chr() the system prints something totally different.
Do you have any advise on how to print the mentioned characters using Python 3?
Thank you.
print('╬'), etc.?print('\xc8')thruprint('\xce')display those 7 characters for me (╚to╬)