gpt4 book ai didi

python - 将多行输入存储到字符串中 (Python)

转载 作者:太空狗 更新时间:2023-10-30 01:40:49 26 4
gpt4 key购买 nike

输入:

359716482
867345912
413928675
398574126
546281739
172639548
984163257
621857394
735492861

我的代码:

print("Enter the array:\n")   
userInput = input().splitlines()
print(userInput)

我的问题是,userInput 只接受第一行的值,但不接受似乎在第一行之后接受了值(value)?

最佳答案

您可以使用文件对象的readlines()方法:

import sys
userInput = sys.stdin.readlines()

关于python - 将多行输入存储到字符串中 (Python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10426699/

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