0
python 33.2
#ŠŃем ŃŠ“Š°ŃŠø) password = input() repeat = input() def validate(text1, text2): if text2 == password : print('Correct') if not text1 == text2 : print('Wrong') validate(password,repeat)
2 Answers
+ 5
you may want to replace your if statements. mainly text2==password with text2==text1. its usually not good practice to use a global variable type with a function. in a more complex code, it could cause problems.
another suggestion would be replacing text1 in the arguments with password. below is an example.
example 1:
def validate(text1, text2):
if text2 == text1:
print('Correct')
else:
print('Wrong')
validate(password,repeat)
example 2:
def validate(password, text2):
if text2 == password:
print('Correct')
else:
print('Wrong')
validate(password,repeat)
+ 6
Tedi ,
if you really have a problem, we need some more details from you:
āŖļøgive a clear and complete description about your task
āŖļøif your question is related to an exercise in a tutorial, please mention the tutorial name and the lesson number
āŖļøif there are error messages please post them here
āŖļøgive at least one sample with input data and the expected output
thanks for your understanding!