python(廖雪峰课后题)
芊蔚澄辰
这个作者很懒,什么都没留下…
展开
-
【廖雪峰 python 课后练习题】【1.5循环】
题目请利用循环依次对list中的每个名字打印出Hello, xxx!:Answer:L = ['Bart', 'Lisa', 'Adam']for i in L: print('hello, %s' %i)原创 2019-12-06 10:12:23 · 726 阅读 · 1 评论 -
Python零基础笔记【1.4 List 和truple】
01 list1 list定义:数组 classmates = ['Michael', 'Bob', 'Tracy']2 list常见方法(1)获取list长度:len() len(classmates)(2)访问list元素:classmates[0],索引0为第一位; classmates[-1],从...原创 2019-12-05 17:52:58 · 801 阅读 · 0 评论 -
【廖雪峰 python 练习题】【1.3数组和元组】
题目请用索引取出下面list的指定元素# -*- coding: utf-8 -*-L = [ ['Apple', 'Google', 'Microsoft'], ['Java', 'Python', 'Ruby', 'PHP'], ['Adam', 'Bart', 'Lisa']]# 打印Apple: print(?) # 打印Python: ...原创 2019-12-05 18:02:58 · 368 阅读 · 0 评论 -
【廖雪峰 python教程 课后题 】【字符串和编码】
题目:小明的成绩从去年的72分提升到了今年的85分,请计算小明成绩提升的百分点,并用字符串格式化显示出'xx.x%',只保留小数点后1位:Answer:# -*- coding: utf-8 -*-"""Created on Thu Dec 5 11:29:47 2019@author: prettybapala"""s1=72s2=85r=((s2-s1)/s1)...原创 2019-12-05 14:19:31 · 344 阅读 · 0 评论 -
【廖雪峰 python教程 课后题sort】
题目描述:假设我们用一组tuple表示学生名字和成绩:L = [('Bob', 75), ('Adam', 92), ('Bart', 66), ('Lisa', 88)]1:请用sorted()对上述列表分别按名字排序:2:再按成绩从高到低排序:解决方案1:L = [('Bob', 75), ('Adam', 92), ('Bart'原创 2018-02-01 14:19:27 · 1233 阅读 · 0 评论 -
【廖雪峰 python教程 课后题 返回函数】
题目:利用闭包返回一个计数器函数,每次调用它返回递增整数:def createCounter(): f = [0] print('闭包外--') def counter(): print('闭包内--') f[0] = f[0] + 1 return f[0] return counter # 测试原创 2018-02-01 15:22:48 · 1737 阅读 · 3 评论