Output "easy to learn the Python language" (10 minutes)

Chapter 1-3 Output "Python language easy to learn" (10 points)

Input formats:

no

Output formats:

Output a phrase, Python language is easy to learn.

If included Chinese characters, with "print (s.encode (" utf-8 "))" output.

Such as:

     s="人生苦短,我学Python"  
     print(s.encode("utf-8"))

Sample input:

Sample output:

"Life is short, I learned Python" output:

b'\xe4\xba\xba\xe7\x94\x9f\xe8\x8b\xa6\xe7\x9f\xad\xef\xbc\x8c\xe6\x88\x91\xe5\xad\xa6Python'

Code

print("Python语言简单易学".encode("utf-8"))

Guess you like

Origin www.cnblogs.com/nonlinearthink/p/10991497.html