Learn python coding if statement optimization

Source: Internet
Author: User

If statement

Example: User login verification, code as follows

1 #Define user name password2user ='Tamir'3passwd ='Tamir123'4 5 #define user name password before user enters account password to authenticate6Username = input ("Username:")7Password = input ("Password:")8  9 #use the If statement to write user input validation informationTen ifuser =Username: One     #Print ("username is correct ...") production environment is not recommended to verify that the account is correct, will increase security risks A     ifPassword =passwd: -         Print("Welcome Login ...") -    Else: the         Print("password is invalid ....") - Else: -     Print("password is invalid ....")

The above code writing is cumbersome, not very beautiful. We can do this to optimize this code:

1  #Define user name password2user ='Tamir'3passwd ='Tamir123'4   5  #define user name password before user enters account password to authenticate6Username = input ("Username:")7Password = input ("Password:")8 9 #beautify your code by optimizing ifTen ifuser = Username andpasswd =Password: One     Print("Welcome Login ...") A Else: -     Print("Account or Password input error ...")

By optimizing the IF code it looks easy to understand the introduction.

Learn python coding if statement optimization

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.