Python why does the below codes input popup show "split multiple input into seperate lines" instead of "enter 1st no. And 2nd no | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Python why does the below codes input popup show "split multiple input into seperate lines" instead of "enter 1st no. And 2nd no

a=float(input("ENTER FIRST NUMBER")) print(a) b=float(input("ENTER SECOND NUMBER")) print(b) s=a+b print(s)

14th Jun 2020, 3:56 AM
DHIVYARAJESRI
DHIVYARAJESRI - avatar
1 Answer
0
This is how sololearn has defined how the input is to be given. If you have multiple inputs Enter first value hit enter and next and so on. Hope this answers your question.
14th Jun 2020, 4:02 AM
Shariff
Shariff - avatar