0
What is wrong with this code???
It keeps telling me error idk how https://sololearn.com/compiler-playground/cHhgPm3kMZzC/?ref=app
4 Antworten
+ 3
You're code is good but sololearn do not run well when using a lot of input
+ 7
Semilore are you entering all 4 inputs on the console popup
Semilore
semilore@gmail.com
+5-976-445-6668
yes submit
This is exactly how you wrote the inputs and runs correctly.
+ 7
Semilore ,
the reason for your problem is probably that playground is going to ask for *ALL* input statements `before` running the code.
SoloLearn is different when using input() function compared to a regular ide.
so in playground each input has to be placed in a `new line` in the input window.
the final step is clicking on submit.
0
#Job application Python code by semilore
print("You came for the job fill out the application:")
name = input("what is your name?")
email = input("what is your email?")
number = input("what is your Number?")
question = input("Are you sure you are ready for this job?")
if question == "yes":
print("okay {name} we will ReachOut you soon you will take a test that will be fowarded to: {email} and {number}")
else:
print("goodbye")