Detailed code sharing about Python process control

迷茫
Release: 2017-03-25 13:32:15
Original
1758 people have browsed it

1.while statement

Conditional loop control statement. Generally it needs to be used together with break, otherwise it will enter an infinite loop.

Format: [ while

                                                                                                                                                                                                                            

##Conditional control of process branches, generally used with elif and else.

x=int(input('请输入一个数字:'))while x>0:    print('正数')    break
Copy after login

For a simple if else statement, you can use ternary operation (ternary operation) to express

x=int(input('请输入一个数字:'))
if x<0:
    print(&#39;负数&#39;)
elif x==0:
    print(&#39;零&#39;)
else :
    print(&#39;正数&#39;)
Copy after login

3.for statement

Loop Control statements can be used to traverse an object and are used together with in.

Format: [for <> in :]
#书写格式result = value1 if  条件 else value2#如果条件成立,把value1的值赋给result,不成立,则把value2的值赋给resul
Copy after login

4.range() function

Number sequence An iterator, when you iterate over it, is an object that returns consecutive items in the desired sequence, but to save space, it doesn't actually construct a list.

Format: range(stop) gives the end value, the start value defaults to 0, and the interval is 1. Range (Start, Stop) gives the start value and end value, and the interval is 1.

Range (Start, STOP, STEP) gives the start value and end value, and the interval is STEP value.

x=[&#39;a&#39;,&#39;b&#39;,&#39;c&#39;,&#39;d&#39;]for i in x :             
 # i 位置的字符,只要不是关键字,可以随意用字符代表
    print(i)
Copy after login

5.break and continue statements, and else statements in loops

1) break

statements and
Similar in C

, used to jump out of the nearest level for or while loop.

for i in range(3):          #运行结果为0,1,2
    print(i)for i in range(0,5):       #运行结果为0,1,2,3,4
    print(i)for i in range(-2,10,2): #运行结果为-2,0,2,4,6,8
    print(i)
Copy after login
2) continue statement

indicates that the loop continues to execute the next iteration

:

while True:    
print(&#39;hello&#39;)    
break
Copy after login
3) else in the loopFor example, in the continue example, there is a for-else statement. The else statement will be executed after the loop jumps out, but break will not execute else when the loop jumps out, so Else can be used to handle some exceptions in the loop.
for x in range(1, 4):
        print(x, &#39;for语句&#39;)
        continue
        print(x, &#39;continue语句后&#39;)
else:
        print(x, &#39;else语句&#39;)
 
#运行结果
for语句
for语句
for语句
else语句
Copy after login

6.pass statement

The pass statement does nothing. It is used in situations where syntactically necessary statements are required, but the program does nothing. It is usually used to create minimally structured classes.

On the other hand, pass can be used as a placeholder for a function or control body when creating new code. Allows you to think on a more abstract level.

for x in range(1, 4):
        print(x)
else:
        print(x)

#运行结果
2
3
Copy after login

The above is the detailed content of Detailed code sharing about Python process control. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template