Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.9k views
in Technique[技术] by (71.8m points)

Python print variable

I am use sublim text.

I want to print s2, s3 and s4 variable

s2 = '∞?????????????????????'

s3 = 'α?áà????éèêíì??óò???úùü?'

s4 = '????│▏┃┆┇┊?┋???????????┌┍┎┏┐┑┒┓└┕┖┗┘┙┚┛'


print(s2,s3,s4)

but: UnicodeEncodeError: 'charmap' codec can't encode characters in position 0-21: character maps to


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use .encode("utf-8") to string.
For example s2.encode("utf-8") that worked for me.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...