python类似!=eof的功能
时间: 2023-09-18 13:07:37 浏览: 84
Python爬虫-解释器的使用.pdf
Python中可使用 while 循环和 input() 函数来实现类似于 !=EOF 的功能。当用户输入了任何字符后,input() 函数就会返回该字符。可以使用这样的代码:
while True:
line = input()
if line:
# 处理非空行
else:
# 处理 EOF
阅读全文