PYTHON. Напишите программу, в которой пользователь вводит пароль в файл input.txt программа считывает его, и если он совпадает с предопределенным паролем для пользователя, то выводится сообщение Password accepted в файл output.txt. В противном случае сообщение будет Sorry, that is the wrong password
Answers & Comments
password = 'your password'
with open('input.txt') as file:
if file.read() == password:
message = 'Password accepted'
else:
message = 'Sorry, that is the wrong password'
with open('output.txt', 'w') as file:
file.write(message)