Is there any way to have input from output of python code and recall the code for next?Orshow text for what input is being taken | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Is there any way to have input from output of python code and recall the code for next?Orshow text for what input is being taken

I e - I have py code to calculate perimeter & area and show nature of traingle for that I needed 3 inputs as sides of traingle in 3 different lines but I couldn't tell it directly. Although people can see how to input from my code. Another code is to calculate temperature I needed input temp but I cannot tell it directly?

2nd Dec 2023, 2:54 AM
♦️NɨɍmȺł ꝁɍ VɨmȺł ♦️
♦️NɨɍmȺł ꝁɍ VɨmȺł ♦️ - avatar
5 Answers
+ 7
The input() function can accept one optional argument: input ('prompt') However, the Sololearn Python compiler is not interactive so the prompt will not be displayed. You can include instructions on how to enter input in the comments at the beginning of your code.
2nd Dec 2023, 3:56 AM
Keith
Keith - avatar
+ 5
StuartH , when a different `ide` is required to avoid input issues from playground, we do not need to install anything. > try to use replit.com which is an online ide for several programming languages. apart of the website mentioned there are apps (from replit) for android and maybe also for apple ios that we can use.
6th Dec 2023, 7:30 AM
Lothar
Lothar - avatar
+ 4
Yes, use the prompt in input. side1 = input("Enter 1st side: ")
2nd Dec 2023, 3:15 AM
Slick
Slick - avatar
+ 3
In Python you can accept multiple inputs one at a time from the user with prompts as to what information you need them to enter. The Sololearn codespace can only accept the inputs all at once on separate lines and cannot display prompts one after the other and also wont show your prompt information to the user. To practice what you're trying to do, you'll need a standalone Python IDE. You can download these for free on desktops, android and ios easily.
2nd Dec 2023, 8:10 AM
StuartH
StuartH - avatar
+ 1
Good tip, thanks. I like the convenience of having it installed but I get that some people might not!
6th Dec 2023, 9:26 AM
StuartH
StuartH - avatar