+ 4
Merging or taking two inputs in Python .
Here in Sololearn we can take input only once . so how can i take two or more inputs a time . Example -: 1. int(input(Write a number)) 2. int(input(Write another number)) How could i take both the input at once ?
3 Antworten
+ 6
x,y=map(int,input().split(","))
try 13,14 for ex
+ 3
enter like this:
first input
second input
+ 3
VcC it worked bro ... Thanks a lot.