Please how do I make inputs into the python playground | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please how do I make inputs into the python playground

23rd Apr 2020, 3:59 PM
Ephraim
Ephraim - avatar
2 Answers
+ 2
You take input like you'd normally do. x = input() Since the code here is not run in real time, you have to enter the input before you run the program, in the popup that opens after you click RUN. In separate lines, if it's more than one input.
23rd Apr 2020, 4:04 PM
HonFu
HonFu - avatar
+ 2
For string: n=input( ) For integer number: n= int( input( ) ) You can check this lesson: https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2426/
23rd Apr 2020, 4:32 PM
Cmurio
Cmurio - avatar