Python基础入门:Task1(day02)Python入门(上)--阿里云天池

Day 02

条件语句

  • if语句
  • if - else语句
  • if - elif - else语句
  • assert
  • assert这个关键词我们称之为“断言”,当这个关键词后边的条件为 False 时,程序自动崩溃并抛出AssertionError的异常
assert 3 > 7
# AssertionError

循环语句

  • while循环
count = 0
while count < 3:
    temp = input("猜一猜小姐姐想的是哪个数字?")
    guess = int(temp)
    if guess > 8:
        print("大了,大了")
    else:
        if guess == 8:
            print("你太了解小姐姐的心思了!")
            print("哼,猜对也没有奖励!")
            count = 3
        else:
            print("小了,小了")
    count = count + 1
print("游戏结束,不玩儿啦!")
  • 布尔表达式返回0,循环终止
string = 'abcd'
while string:
    print(string)
    string = string[1:]
# abcd
# bcd
# cd
# d    
  • while - else
  • 当while循环正常执行完的情况下,执行else输出,如果while循环中执行了跳出循环的语句,比如 break,将不执行else代码块的内容
    例(有break):当x < 3时,将直接跳出循环,不会再执行else的内容
x = 5
while x >= 0:
    x -= 1
    if x < 3:
        break
    print(x)
else: print('x小于5')
#4
#3

例(无break):会一直执行到else

x = 5
while x >= 0:
    x -= 1
    print(x)
else: print('x小于5')
#4
#3
#2
#1
#0
#-1
x小于5
  • for循环
  • 格式
  • for 迭代变量 in 可迭代对象:
    代码块
  • for循环可以遍历任何有序序列
  • 列表
member = ['张三', '李四', '刘德华', '刘六', '周润发']
for each in member:
    print(each)
# 张三
# 李四
# 刘德华
# 刘六
# 周润发
for i in range(len(member)):
    print(member[i])
# 张三
# 李四
# 刘德华
# 刘六
# 周润发
  • 字典
    遍历整个dict
dic = {
     'a': 1, 'b': 2, 'c': 3, 'd': 4}
for key, value in dic.items():	#items返回tuple(元组)
    print(key, value, sep=':', end=' ')
 # a:1 b:2 c:3 d:4 

遍历所有keys

dic = {
     'a': 1, 'b': 2, 'c': 3, 'd': 4
for key in dic.keys():
    print(key, end=' ')
# a b c d 
  • 遍历所有values
dic = {
     'a': 1, 'b': 2, 'c': 3, 'd': 4}
for value in dic.values():
    print(value, end=' ')
# 1 2 3 4
  • for - else循环
  • 当for循环正常执行完的情况下,执行else输出,如果for循环中执行了跳出循环的语句,比如 break,将不执行else代码块的内容,与while - else语句一样
  • 有break
list = [1, 2, 3, 4, 5]
for x in list:
    if x > 4:
        break
    print(x)
else:
    print('list没有完成遍历')
#1
#2
#3
#4
  • 无break
list = [1, 2, 3, 4, 5]
for x in list:
    
    print(x)
else:
    print('list完成遍历')
#1
#2
#3
#4
#5
list完成遍历 
  • range()函数
  • range([start,] stop[, step=1])
  • 两个参数
  • step默认为1
  • 左闭右开
for i in range(1, 10, 2):
    print(i)
# 1
# 3
# 5
# 7
# 9
  • enumerate()函数
  • enumerate(sequence, [start=0])
    sequence:一个序列、迭代器或其他支持迭代对象。
    start:下标起始位置。
    返回 enumerate(枚举) 对象
    例1
seasons = ['Spring', 'Summer', 'Fall', 'Winter']
lst = list(enumerate(seasons))
print(lst)
# [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]
lst = list(enumerate(seasons, start=1))  # 下标从 1 开始
print(lst)
# [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]

例2

for i, language in enumerate(languages, 2):
    print(i, 'I love', language)
print('Done!')
# 2 I love Python
# 3 I love R
# 4 I love Matlab
# 5 I love C++
# Done!
  • break语句:break语句可以跳出当前所在层的循环
  • continue:continue终止本轮循环并开始下一轮循环
  • pass语句
  • pass 语句的意思是“不做任何事”,如果你在需要有语句的地方不写任何语句,那么解释器会提示出错,而 pass 语句就是用来解决这些问题的
  • pass是空语句,不做任何操作,只起到占位的作用,其作用是为了保持程序结构的完整性。尽管pass语句不做任何操作,但如果暂时不确定要在一个位置放上什么样的代码,可以先放置一个pass语句,让代码可以正常运行
  • 推导式
  • [ expr for value in collection [if condition] ]
    输出的是expr, expr是关于value的表达式
  • 列表推导式
    例1
x = [-4, -2, 0, 2, 4]
y = [a * 2 for a in x]
print(y)
# [-8, -4, 0, 4, 8]

例2

x = [i for i in range(100) if (i % 2) != 0 and (i % 3) == 0]
print(x)
# [3, 9, 15, 21, 27, 33, 39, 45, 51, 57, 63, 69, 75, 81, 87, 93, 99]

例3

a = [(i, j) for i in range(0, 3) if i < 1 for j in range(0, 3) if j > 1]
print(a)
# [(0, 2)]
  • 元组推导式
a = (x for x in range(10))
print(a)
#  at 0x0000025BE511CC48>
print(tuple(a))
# (0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
  • 字典推导式
b = {
     i: i % 2 == 0 for i in range(10) if i % 3 == 0}
print(b)
# {0: True, 3: False, 6: True, 9: False}
  • 集合推导式
c = {
     i for i in [1, 2, 3, 4, 5, 5, 6, 4, 3, 2, 1]}
print(c)
# {1, 2, 3, 4, 5, 6}
  • 其它
  • next迭代器
    next(iterator[, default]) default为默认值
e = (i for i in range(3))
while True:
    print(next(e, '-1')) #如e没有对应的值,一直返回-1
  • sum函数
s = sum([i for i in range(101)])
print(s)  # 5050

你可能感兴趣的:(python)