Print dict and tuple are both displayed in unicode code. If you print a single element under dict or tuple, it will be displayed in normal Chinese. In addition, adding u in front of the string indicates that the string is in unicode format You can post your code to see how it is printed.
Print dict and tuple are both displayed in unicode code. If you print a single element under dict or tuple, it will be displayed in normal Chinese.
In addition, adding u in front of the string indicates that the string is in unicode format
You can post your code to see how it is printed.
Output in sequence
('xe4xbdxa0xe5xa5xbd', 'abc', 123)
Hello
{'age': 14, 'name': 'xe5xbcxa0xe4xb8x89'}
Zhang San
Zhang San
Start
It seems that what you printed is a tuple
Try printing the string directly, it should be able to display what you want
Try it like this