1. 条件判断
根据条件进行判断,从而执行不同的操作
使用if...elif...else
语句
2. 循环
重复性的执行某个操作,称为循环
两种:
- while循环
- for…in循环
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = '夏京'
# 条件判断 if.. elif.. else
age=25
if age>21:
print('if判断')
print('111')
score=8
if score>=90:
print("优秀!")
elif score>=70:
print("良好!")
elif score>=60:
print("及格!")
else:
print("好好学习!")
#当判断是:0、空字符串、None、空list等 表示是False,否则是Ture
if 9:
print("Ture")
# 循环 while for i in XX
i=1
sum = 0
while i<=100:
sum +=i
i=i+1 #python没有i++
print(sum)
# for i in 循环
names=['ss','fjjf','dsh']
for i in names:
print(i)
for i in range(1,101):
print(i)