0
Input and user input
If I code an input line, how can I use what the user enters, and have following code respond to it. For example If I ask the user to input(original) a response and I want the next input code to vary depending on what the user enters on the original input. how would I write that?
2 Answers
+ 2
I'm afraid on Sololearn we can't take a second input based on the first. All the inputs must be provided together at beginning. But you can certainly do it in any offline Python editor using the method HonFu suggested.
+ 1
First you need to store the inout of the user in a variable.
x = input()
And the content of x (always a string) can be used now to steer program flow:
if x == ...:
...