输入格式:
无
输出格式:
输出一句短语,Python语言简单易学。
如果包含汉字,用"print(s.encode("utf-8"))"输出.
代码如下:
#!/usr/bin/python # -*- coding: utf-8 -*- s="Python语言简单易学" print(s.encode("utf-8"))
encode() 方法以 encoding 指定的编码格式编码字符串。
本题是以utf-8进行编码输出。
读书和健身总有一个在路上
无
输出一句短语,Python语言简单易学。
如果包含汉字,用"print(s.encode("utf-8"))"输出.
代码如下:
#!/usr/bin/python # -*- coding: utf-8 -*- s="Python语言简单易学" print(s.encode("utf-8"))
encode() 方法以 encoding 指定的编码格式编码字符串。
本题是以utf-8进行编码输出。
读书和健身总有一个在路上