0
What is wrong ?
What is wrong in this python code!? https://code.sololearn.com/coI5lT4533a1/?ref=app
5 Antworten
+ 5
Indentation is missing.
Read (not run) this:
https://code.sololearn.com/cT5BRIbkia21/?ref=app
+ 5
Only indentation errors as said by honfu
user= "adham"
password = "12345"
x = input("username ?")
y = input ("password ?")
print (x)
if (x == user ):
print (y)
else:
print ("wrong username")
0
Good example! Yes:)