Review Python (conditional judgment, looping, string formatting)

Source: Internet
Author: User

1. Condition Judgment:

There is only one

If

***

Elif: #多个条件加elif, want to add a few plus a few

****

Else

****

Python is indented to represent the statement block, see the colon, the downside is to indent

2. Circulation

Two types, for and while

For I in Rangle (): #想循环几次, write a few

****

While * * *: #while循环必须有计数器

****

3. String formatting

Username = input (' Please enter your name: ')
123

Example 1. username+ ', welcome, ' + ' time is: ' +time

Example 2. ' %s Hello '%name

Example 3. ' %s, Hello, today's date is%s '% (name,time)

Example 4. ' {}, Hello, today's date is {} '. Format (name,time)

Example 5. ' {name}, hello, today's date is {time} '. Format (name=name,time =xxxx) #可以直接指定

Review Python (conditional judgment, looping, string formatting)

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.