Python Pass Statement Use example

Source: Internet
Author: User
The Python Pass is an empty statement, the pass statement does nothing, generally as a placeholder or to create a placeholder, is to maintain the integrity of the program structure, the PASS statement will not perform any action, such as:

The Python language Pass statement has the following syntax format:
Copy the Code code as follows:

Pass


Copy the Code code as follows:

Instance:


Copy the Code code as follows:


#!/usr/bin/python

For letter in ' Python ':
If letter = = ' h ':
Pass
Print ' This is pass block '
print ' Current letter: ', letter

Print "Good bye!"


The result of the above instance execution:
Copy the Code code as follows:


Current Letter:p
Current Letter:y
Current Letter:t
This is pass block
Current Letter:h
Current Letter:o
Current Letter:n
Good bye!

  • 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.