string prefix
h2> meaning
- u stands for unicode and can store Chinese characters.
- b for bytes, can not store Chinese.
- r represents raw and does not recognize escape characters.
- f format.
Use
h2>
print(r"tes\nt")
print(r"tes\nt")
div>