This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hi Iam getting error for the below code in Mu editor .. can anyone help me here to understand the reason | |
name ='marry' | |
password == 'swordfish' | |
if name == 'marry': | |
print('Hello,marry') | |
if password == 'swordfish': | |
print('Access granted.') | |
else: | |
print('wrong password.') |