Job: Writing user name password input interface program in Python

Source: Internet
Author: User

Count = 0
While Count <3:
Username = input ("Username:")
Password = input ("Password:")
"" Enter User password
If username = = "Pang" and password = = "Pang123":
Print ("Welcome")
Break
‘‘‘‘‘‘
Enter Pang and pang123 to have a welcome printout and end Loop
Else
Print ("Try Again")
"" or print and try again
Count +=1
"" Cycle +1
Else
Print ("You have tried too many times,you is locked")

' ' ' cycles more than three times to print the number of times you've tried, locked


Code
Count = 0
While Count <3:
Username = input ("Username:")
Password = input ("Password:")
If username = = "Pang" and password = = "Pang123":
Print ("Welcome")
Break
Else
Print ("Try Again")
Count + = 1
Else
Print ("You have tried too many times,you is locked")

Job: Writing user name password input interface program in Python

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.