PHP前端开发

python如何输入多行数据

百变鹏仔 3天前 #Python
文章标签 行数
Python 输入多行数据有两种方法:1. 打开文本文件,使用 open() 并将 mode 设置为 'r',再用 readlines() 读取所有行;2. 使用 input() 和循环,提示用户输入每一行,并将其存储在列表中。

Python如何输入多行数据

在Python中,有两种常见的方法可以输入多行数据:

1. 使用文本文件

示例代码:

立即学习“Python免费学习笔记(深入)”;

with open('data.txt', 'r') as file:    lines = file.readlines()

2. 使用input()函数和循环

示例代码:

立即学习“Python免费学习笔记(深入)”;

lines = []while True:    line = input("Enter a line of text (or press Enter to finish): ")    if not line:        break    lines.append(line)