User clarification. | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

User clarification.

Sololearn app clarification. Every time I make a code that needs user input I get a pop saying: "looks like your prog' needs input" "split multiple inputs into separate lines" What is this and what should I do? Because same code works fine on my laptop. Also, most of my codes work well on my laptop, but I mostly get syntax errors on this sololearn playground for the same lines of codes. Help someone.

20th Jul 2019, 1:27 AM
Jeffchoppah
Jeffchoppah - avatar
2 Respostas
+ 3
Because SoloLearn code playground can only handle the input once. If you need more than 1 input on your program, the only way is separate the input. For example, you need to input 2 integers. What we do is: 1 4
20th Jul 2019, 1:34 AM
ä½ ēŸ„é“č¦å‰‡ļ¼Œęˆ‘也ę˜Æ
ä½ ēŸ„é“č¦å‰‡ļ¼Œęˆ‘也ę˜Æ - avatar
+ 3
It's a nuisance. e.g. when you run this code a = int(input()) b = int(input()) c = int(input()) print(a + b + c) you have to enter your data like this: 3 hit 'enter' 5 hit 'enter' 2 hit 'submit' outputs 10
20th Jul 2019, 2:54 AM
David Ashton
David Ashton - avatar