当我尝试在以下情况下使用 strip() 时,输出有点不同。
for line in tagfile:
tag_name = line.strip("<>")
print tag_name
输出是
strike>
但是如果我使用以下方法
tag_name = "<strike>"
print tag_name.strip("<>")
输出是
strike
任何人都可以帮助这个?
当我尝试在以下情况下使用 strip() 时,输出有点不同。
for line in tagfile:
tag_name = line.strip("<>")
print tag_name
输出是
strike>
但是如果我使用以下方法
tag_name = "<strike>"
print tag_name.strip("<>")
输出是
strike
任何人都可以帮助这个?