5th day of python challenges 80-87
This commit is contained in:
8
challenges80-87/challenge-086.py
Normal file
8
challenges80-87/challenge-086.py
Normal file
@@ -0,0 +1,8 @@
|
||||
password = str(input('Enter password : '))
|
||||
re_password = str(input('Re-enter password : '))
|
||||
if password == re_password:
|
||||
print('Thank you')
|
||||
elif password != re_password:
|
||||
print('They must be in the same case')
|
||||
else:
|
||||
print('Incorrect')
|
Reference in New Issue
Block a user