.strip()
用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。
返回移除字符串头尾指定的字符生成的新字符串。
while True: print(input().strip("吗?") + "喵!")
运行结果:
D:pytestvenvScriptspython.exe D:/pytest/test.py 你好 你好喵! 你是小那几! 你是小那几!喵! 你好吗 你好喵! 你不好? 你不好喵! 你吃屎吗? 你吃屎喵!
.strip()
用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列。
返回移除字符串头尾指定的字符生成的新字符串。
while True: print(input().strip("吗?") + "喵!")
运行结果:
D:pytestvenvScriptspython.exe D:/pytest/test.py 你好 你好喵! 你是小那几! 你是小那几!喵! 你好吗 你好喵! 你不好? 你不好喵! 你吃屎吗? 你吃屎喵!