6 Réponses
+ 9
Not possible in Sololearn in the form of 2 separate instances of input collection (although you technically input multiple times by separating with newline).
+ 4
You might need a Python IDE. These playgrounds are good only for simple programs.
+ 4
Not possible on sololearn but you can use JavaScript on sololearn to accomplish it.
+ 3
not sure if you use the get method and return the input instead hope this helps
+ 1
On sololearn you can ask multiple inputs if you provide them in separate lines (use the line break ↩️)
Other possibility, you separate the values by spaces and you do
input().split()
to create a list from the inputs
0
Thank you for everyone that you help me to sort this problem out.
Especially to you Prometheus.