+ 2
How to take multiple integers as input in python
In one problem I want to take multiple integers as input as follows : 4 6 7 9 Please help me
1 ответ
+ 10
for i in range (4):
List.append(input())
You can she something like it
In one problem I want to take multiple integers as input as follows : 4 6 7 9 Please help me