Solo learn python app for android code playground isnt matching examples in basic topic: input?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Solo learn python app for android code playground isnt matching examples in basic topic: input??

playground example has pop up with different text than whats in parentheses. playground parentheses says input ("enter number") popup "it looks like you need to enter a value" In the type conversion section next the example output is 42 when the input is something like float("input("enter number:")) code playground output for that same input is: "enter number: 42" pls help? code the playground writes print(float(input("Enter a number: ")) + float(input("Enter another number: "))) *more in comments*

31st May 2018, 2:48 PM
also trebeck
7 Answers
0
post the code
31st May 2018, 2:54 PM
Pavan Kumar T S
Pavan Kumar T S - avatar
0
in the playground the code is print(float(input("Enter a number: ")) + float(input("Enter another number: "))) this is the one that gives a popup of "it looks like your code requires 2 entries" or something like that. When you enter w numbers your output says Enter a number: Enter another number: # (# is some sum of two numbers you've inputted) My q is why are the words printed with the sum and not just the numerical sum only?
31st May 2018, 3:18 PM
also trebeck
0
if i remove the word print (because in the lesson the word print isnt there) the output is not just the number like in the lesson. when the word print is removed the output are the words "Enter a number: Enter another number:" I want the playground example to match the lesson example. I dont know which behavior to expect and why
31st May 2018, 3:27 PM
also trebeck
0
the problem is in sololearn input is not taken in runtime rather taken at the very beginning. the reason for the output your seeing is because of the "input" it prints message inside during runtime so it looks like fault.
1st Jun 2018, 5:30 AM
Pavan Kumar T S
Pavan Kumar T S - avatar
0
what is it supposed to be? if I run this command in the real world I need to know what to expect
1st Jun 2018, 1:51 PM
also trebeck
0
first it will print text inside "input() " then it will wait for the input then prints the output
1st Jun 2018, 3:27 PM
Pavan Kumar T S
Pavan Kumar T S - avatar
0
my question is what is the final output supposed to be? just the number?
1st Jun 2018, 5:04 PM
also trebeck