+ 1
Hi please I need help I need to write two input in the same line I have 4. two in one line .Thank's
15 Réponses
+ 4
Don't post duplicate questions ^^
Check the answer I provide a few minutes ago to your previous question :P
https://www.sololearn.com/Discuss/238427/?ref=app
 
+ 1
print(i)? why ? 
+ 1
Thank you 
+ 1
Ah :D ok thank u 
+ 1
Oh it's not useful in my case 
beacause I need two input 
for exemple :
a=input()
b=input() 
i need it be write 
a  b 
like 30   40 
cuz I will use each one in one function
0
what about .split("  ")
0
i mean input().split(" ")
0
yes i can make then 
A = input().split(" ")
a = int(A[0])
b = int(A[1])
0
Haha thank you 



