python萌新求助

P1001 A+B Problem

Bbbeeans_zyf23 @ 2023-03-04 20:42:37

请问我这Python的代码到底错在了哪里???

a=int(input())
b=int(input())
c=a+b
print(c)

by yszkddzyh @ 2023-03-04 20:46:27

@zhanyoufu 一行内输入要用切片


by Eleveslaine @ 2023-03-04 20:47:38

@zhanyoufu input() 是一次输入一行的

可以试试

s=input()
a=int(s.split(' ')[0])
b=int(s.split(' ')[1])
print(a+b)

不知道 map 事什么东西,但是这样是可以输入的(


by da_ke @ 2023-03-04 20:54:33

s = input().split()
print(int(s[0]) + int(s[1]))

by Pol_Pot @ 2023-03-04 21:09:13

也可以这样写

print(sum(list(map(input().split()))))

by I_AM_AC_KING @ 2023-07-07 09:42:47

要用split


|