编写一个程序,当输入是自己真实姓名和学号时,显示登录成功,否则登录失败,最多可以输入三次用
时间: 2024-03-12 10:43:12 浏览: 48
登录验证,只有三次机会,输入特定的用户名和密码后显示登陆成功
5星 · 资源好评率100%
好的,这是一个简单的 Python 代码,可以实现您所需的功能:
```python
name = 'Your Name'
student_id = 'Your Student ID'
tries = 3
while tries > 0:
input_name = input('Please enter your name: ')
input_id = input('Please enter your student ID: ')
if input_name == name and input_id == student_id:
print('Login successful!')
break
else:
print('Login failed. Please try again.\n')
tries -= 1
if tries == 0:
print('You have run out of tries. Please try again later.')
```
您可以将 `name` 和 `student_id` 更改为您的真实姓名和学号,然后运行代码,以测试其功能。
阅读全文