利用Python输入n个用空格分隔的整数 ← list(map(int,input().split()))

在算法设计中,经常需要输入 n 个用空格分隔的整数。现对其 Python 代码进行总结:
● 当 n=1 时:

python 复制代码
x=int(input())
print(x)

● 当 n=2 时:

python 复制代码
x,y=map(int,input().split()) #Enter numbers separated by space
sum=x+y
print(sum)
 
'''
in:
1 2
out:
3
'''

● 当 n=3 时:

python 复制代码
x,y,z=map(int,input().split()) #Enter numbers separated by space
sum=x+y+z
print(sum)
 
'''
in:
1 2 3
out:
6
'''

● 当 n>3 时:
代码一:不需预先输入 n 的值
(1)使用 list 与 map:list(map(int,input().split()))

python 复制代码
ls=list(map(int,input().split()))
sum=0
for x in ls:
    sum+=x
print(sum)

'''
in:5 3 1 2 7
out:18
'''

(2)使用 input().split()

python 复制代码
ls=input().split()
sum=0
for x in ls:
    sum+=int(x)
print(sum)

'''
in:5 3 1 2 7
out:18
'''

**注意:**命令 input().split() 的功能是将空格分隔的若干输入生成一个列表(list)。如下所示:

python 复制代码
>>> ls=input().split()
5 6 8 9
>>> type(ls)
<class 'list'>
>>> ls
['5', '6', '8', '9']
>>> 

代码二:需预先输入 n 的值
(1)使用 list 与 map:list(map(int,input().split()))

python 复制代码
n=eval(input())
ls=list(map(int,input().split()))
sum=0
for x in ls:
    sum+=x
print(sum)

'''
in:
5
5 3 1 2 9

out:
20
'''

(2)使用 input().split()

python 复制代码
n=int(input())
ls=[int(x) for x in input().split()]
print(sum(ls))

'''
in:
5
5 3 6 7 8

out:
29
'''

● 输入二维的用空格分隔的数据:list(map(int,input().split()))

python 复制代码
m,n=map(int,input().split())

ls=[]
for i in range(m):
    ls.append(list(map(int,input().split())))

print(ls)

'''
in:
3 5
1 2 3 4 5
5 4 3 2 1
6 7 8 9 0
out:
[[1, 2, 3, 4, 5], [5, 4, 3, 2, 1], [6, 7, 8, 9, 0]]
'''

【参考文献】
https://blog.csdn.net/hnjzsyjyj/article/details/142204614
https://www.cnblogs.com/A180/p/15709850.html

相关推荐
梧桐树04293 小时前
python常用内建模块:collections
python
Dream_Snowar4 小时前
速通Python 第三节
开发语言·python
蓝天星空5 小时前
Python调用open ai接口
人工智能·python
jasmine s5 小时前
Pandas
开发语言·python
郭wes代码5 小时前
Cmd命令大全(万字详细版)
python·算法·小程序
leaf_leaves_leaf5 小时前
win11用一条命令给anaconda环境安装GPU版本pytorch,并检查是否为GPU版本
人工智能·pytorch·python
夜雨飘零15 小时前
基于Pytorch实现的说话人日志(说话人分离)
人工智能·pytorch·python·声纹识别·说话人分离·说话人日志
404NooFound6 小时前
Python轻量级NoSQL数据库TinyDB
开发语言·python·nosql
天天要nx6 小时前
D102【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest
minstbe6 小时前
AI开发:使用支持向量机(SVM)进行文本情感分析训练 - Python
人工智能·python·支持向量机