在Python中,输入多行数据可以通过以下几种方法实现:
1. 使用`input()`函数结合循环:
n = int(input("请输入行数:"))
lst = []
for i in range(n):
s = input(f"请输入第{i+1}行:")
lst.append(s)
print(lst)
2. 使用`while`循环:
s = ""
while True:
line = input("请输入一行文本(或按Enter结束):")
if not line:
break
s += line + "\n"
print(s.strip())
3. 使用`for`循环结合`sys.stdin`:
import sys
strList = []
for line in sys.stdin:
strList.append(line.strip())
print(strList)
4. 使用`try-except`结构处理输入结束信号:
lines = []
while True:
try:
lines.append(input())
except EOFError:
break
print(lines)
5. 使用`with open`读取文本文件中的所有行:
with open('data.txt', 'r') as file:
lines = file.readlines()
print(lines)
以上方法都可以实现多行数据的输入,具体使用哪种方法取决于你的使用场景和需求
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://sigusoft.com/bj/113997.html