gpt4 book ai didi

python - 从控制台读取未知行数

转载 作者:行者123 更新时间:2023-12-05 03:01:50 25 4
gpt4 key购买 nike

我必须从 python3 中的标准输入读取未知行数。有没有办法在没有任何模块的情况下做到这一点?还有一个问题:如何在 python3 中表示多行输入的结束?

最佳答案

尝试这样的事情

a_lst = []          # Start with empty list
while True:
a_str = input('Enter item (empty str to exit): ')
if not a_str: # Exit on empty string.
break
a_lst.append(a_str)
print(a_lst)

关于python - 从控制台读取未知行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55500812/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com