挑战Python100题(7)

发布时间:2023年12月29日

100+ Python challenging programming exercises 7

Question 61

Print a unicode string "hello world".

Hints: Use u'strings' format to define unicode string.

打印一个unicode字符串“helloworld”。
提示:使用u“字符串”格式定义unicode字符串。

Solution:

unicodeString = u"hello world!"
print(unicodeString)

Question 62

Write a program to read an ASCII string and to convert it to a unicode string encoded by utf-8.

Hints: Use unicode() function to convert.

编写一个程序来读取ASCII字符串,并将其转换为utf-8编码的unicode字符串。

提示:使用unicode()函数进行转换。

Solution:

s = input()
u = unicode( s ,"utf-8")
print(u)

Question 63

文章来源:https://blog.csdn.net/boysoft2002/article/details/135240434
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。