Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created April 21, 2020 13:11
Embed
What would you like to do?
字符串
text = ' HELLO PY HI PY '
print(text)
print(text.strip())
# 打印出 HELLO PY HI PY
# 打印出HELLO PY HI PY
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment