少儿学python技术文章
这篇文章主要知识点是关于Python、作业、课题、练习、儿童猫编程的内容,如果大家想对相关知识点有系统深入的学习,可以参阅以下电子书
利用*字典*输出目录,可以选择目录进入,可以回退、退出!
#conding:utf8
menu = {'北京':{'昌平':{'沙河':{'昌平妇幼',}},'海淀':{'海淀一区':{'海淀二区'},}},} #字典嵌套
current_layer = menu #利用此变量来记录当前的层的位置
pre_menu = [] #用【】来记录每一层
while True:
for k in current_layer:
print (k)
choice = input('>>>>>>>:').strip() #去除输入选项连边的空格
if len(choice) == 0: #通过len的长度来判断用户是否输入了
continue
if choice in current_layer:
pre_menu.append(current_layer)
current_layer = current_layer[choice]
elif choice == 'b':
if len(pre_menu) > 0: #通过大于0 来判断,还有目录可退
current_layer = pre_menu.pop() #利用pop来弹出上面的一层。
elif choice == 'q':
exit()
|
作业二
list的小练习:实现购物车功能
product_list = [[ |
作业三
冒泡算法小练习
a_list = [ |
作业四
插入算法小练习
实现方法一:
a_list = [ |
实现方法二:
arr1 = [ |
做业五
打印99乘法表
#! /usr/bin/python
# Filename : table_9x9.py
print '\n9x9 Table\n'
for i in range(1, 10) :
for j in range(1, i+1) :
print j, 'x', i, '=', j*i, '\t',
# print '%d x %d = %d\t' %(j, i, j*i),
print '\n'
print '\nDone!'
关于该程序的说明:
1. 第一行是特殊注释行,称为组织行,用来告诉GNU/Linux系统应该使用哪个解释器来执行该程序。
2. 第二行至第四行都是一般的注释行,用来说明一些信息的(如文件名,作者,时间等)。
3. 第六行打印一个字符串。
4. 第八行i取值范围为1, 2, 3, 4, 5, 6, 7, 8, 9
5. 第九行j取值范围为1, 2, ..., i
6. 第十行和第十一行效果一样,最后的逗号都是用来取消自动换行的。
7. 第十二行作用是在每个内层for循环结束后换行,即在输出完九九乘法表一行后换行。
8. 第十四行打印一个字符串。
小结:通过这个程序熟悉print的用法,for循环的用法,以及range函数的特点。
|
课堂中提到的方法:
for i in range(1,10):
output = ''
for j in range(1,i+1):
output+= "%s*%s=%2s "%(i,j,i*j)
print output
---------------------------------------------------
作业六:
取一个列表中前两位大的数字
#!/usr/bin/python
NumList = [1,2,3,2,12,3,1,3,21,2,2,3,4111,22,3333,444,111,4,5,777,4222,46,33,45,65555]
max_num = 0
sec_num = 0
for n in NumList:
if max_num < n:
sec_num=max_num
#获取最大数之前的比较的哪个数肯定是在这之前第二大的
max_num = n
#但是后面如果再出现比最大的大,比之前比较出料的第二大
#小的数时需要再比较下。
if n < max_num and n > sec_num:
sec_num = n
print ('The bigest NUM is : %s' %(max_num))
print ('The second one is : %s' %(sec_num))
|
利用单循环来同事去除两个两个数。
作业七
二分查找法(利用递归函数)
num_list = [ |
作业八
利用函数完成用户的注册登录功能
#!/usr/bin/python
#encoding: utf-8
import getpass
user_list = {}
def new_user():
username = raw_input('please input your new name:')
if username in user_list:
print '%s is already exits!!' %username
else:
passwd = getpass.getpass() #已密码不显示的方式输入。
user_list[username] = passwd
def old_user():
username = raw_input('please input your name:')
passwd = raw_input('please input your passwd:')
if username in user_list:
if user_list[username] == passwd:
print 'login successfull!!'
else:
print 'login fail!!'
else:
print 'login fail!!!'
CMD = {'n' : new_user , 'o' : old_user}
def main_menu():
ppp = '''
新用户注册:n
老用户登录:o
推出:q
'''
while True:
try:
choice = raw_input(ppp)
except (KeyboardInterrupt, EOFError): #捕捉ctrl+ D 的错误输出。
choice = 'q'
if choice not in 'noq':
print 'please input again'
continue
if choice == 'q':
break
CMD[choice]() #通过取字典的key,选择来执行函数
if __name__ == '__main__':
main_menu()
作业九 |
log日志前十排序,其中包括重复的。利用函数简单的html输出
#!/usr/bin/python #coding:utf8 def openFile(log): with open(log) as f: content = f.readlines() return content def countLine(fn): content = fn count_dict = {} for line in content: line = line.split(' ') # string 通过split 转换为list local_ip,uri,code = line[0],line[6],line[8]
#利用元组来作为key,然后统计数量
count_dict[(local_ip,uri,code)] = count_dict.get((local_ip,uri,code),0) + 1
#这个排序的功能网上copy的,不了解原理
count_dict = sorted(count_dict.items() ,key=lambda item:item[1],reverse=True) return count_dict def detailLine(fn): count_dict = fn #下面进行重复行计数为一行。 n = 1 #取行计数 num = 0 #用于判断'统计数量'是否出现一样的 # print ('-----IP------------------URI----------CODE---count---') # for i in count_dict: # if n <= 10: # 取前十 # if i[1] != num: # print('%-10s%20s%5s%10s ---->no%s' % (i[0][0], i[0][1], i[0][2], i[1], n)) # num = i[1] # n += 1 # elif i[1] == num: # print('%-10s%20s%5s%10s' % (i[0][0], i[0][1], i[0][2], i[1])) with open('count.html','w') as f: res = "<table border='1'>" res += '<tr><td>IP</td><td>URI</td><td>CODE</td><td>COUNT</td></tr>' for i in count_dict: if n <= 10: if i[1] != num: res += '<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>'% (i[0][0], i[0][1], i[0][2], i[1]) num = i[1] n += 1 elif i[1] == num: res += '<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>' % (i[0][0], i[0][1], i[0][2], i[1]) res +='</table>' f.write(res) def main(): first = openFile('access.log') second = countLine(first) detailLine(second) if __name__ == '__main__': main()
作业十, |
生成随机验证码:
方法一: import string,random source = string.digits + string.ascio_lowercase print ("".join(random.sample(source,6))) 方法二: checkcode = '' for i in range(6): current = random.randrange(0,6) if current != i: temp = chr(random.randint(65,90)) else: temp = random.randint(0-9) checkcode += str(temp) print(checkcode)
以上就是Python的一些小练习的详细内容,更多请关注码农之家其它相关文章!
以上就是本次给大家分享的关于少儿学python的全部知识点内容总结,大家还可以在下方相关文章里找到机器人编程对少儿的作用、 少儿scratch编程讲义 、 少儿编程教师怎么样 、 少儿编程教育有限公司 、 兰州少儿编程培训学校 、 等少儿学python相关文章进一步学习,感谢大家的阅读和支持。
上一篇:没有了
展开 +
收起 -
Copyright 2018-2021 www.xz577.com 码农之家
版权投诉 / 书籍推广:520161757@qq.com
python基本语法练习实例
1、打印九九乘法表 #只打印结果for i in range(1,10): for j in range(1,i+1): print(i*j,end=" ") print() #打印算数表达式for i in range(1,10): for j in range(1,i+1): print("{0}*{1} = {2:2}".format(j,i,i*j),end=" ") print() 1*1 = 1 1*2 = 2 2*2 = 4 1*3 = 3 2*3 = 6 3*3 = 9 1*4 = 4 2*4 = 8 3*4 = 12 4*4 = 16 1*5 = 5 2*5 = 10 3*5 = 15 4*5 = 20 5*5 = 25 1*6 = 6 2*6 = 12 3*6 = 18 4*6 = 24 5*6 = 30 6*6 = 36 1*7 = 7 2*7 = 14 3*7 = 21 4*7 = 28 5*7 = 35 6*7 = 42 7*7 = 49 1*8 = 8 2*8 = 16 3*8 = 24 4*8 = 32 5*8 = 40 6*8 = 48 7*8 = 56 8*8 = 64 1*9 = 9 2*9 = 18 3*9 = 27 4*9 = 36 5*9 = 45 6*9 = 54 7*9 = 63 8*9 = 72 9*9 = 81 #将打印矩阵转置一下for i in range(1,10): print(" " *10*(i-1), end = " ") for j in range(i,10): print("{0}*{1} = {2:2}".format(i,j,i*j),end=" ") print() 1*1 = 1 1*2 = 2 1*3 = 3 1*4 = 4 1*5 = 5 1*6 = 6 1*7 = 7 1*8 = 8 1*9 = 9 2*2 = 4 2*3 = 6 2*4 = 8 2*5 = 10 2*6 = 12 2*7 = 14 2*8 = 16 2*9 = 18 3*3 = 9 3*4 = 12 3*5 = 15 3*6 = 18 3*7 = 21 3*8 = 24 3*9 = 27 4*4 = ……
分享给Python新手们的几道简单练习题
前言 本文主要给大家分享了一些简单的Python练习题,对学习python的新手们来说是个不错的练习问题,下面话不多说了,来一起看看详细的介绍吧。 第一题:使用while循环输入 1 2 3 4 5 6 8 9 10 a = 0while a 10: a +=1 if a == 7: continue print(a) 第二题:求1-100的所有数的和 第一种方法: a = 0b = 1while b = 100: a = a + b b += 1print(a) 第二种方法: a = 0for i in range(101): a = a + i print(a) 第三题:输出 1-100 内的所有奇数 a = 0while a = 100: a += 1 if(a%2) == 0: print(a) 第四题:输出 1-100 内的所有偶数 第一种方法: a = 0while a = 100: a += 1 if(a%2) == 0: print(a-2+1) 第二种方法: a = 0while a = 99: a += 1 if(a%2) != 0: print(a) 第五题:求1-2+3-4+5 ... 99的所有数的和 a = 0b = 0while a 99: a += 1 if a%2 == 1: b += a else: b -= aprint(b) 第六题:用户登陆(三次机会重试) a = 0while a 3: name = input("请输入用户名: ") password = input("请输入……
分享一个python练习题实例
1、有四个数字:1、2、3、4,能组成多少个互不相同且无重复数字的三位数?各是多少?2、企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%;利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可提成7.5%;20万到40万之间时,高于20万元的部分,可提成5%;40万到60万之间时高于40万元的部分,可提成3%;60万到100万之间时,高于60万元的部分,可提成1.5%,高于100万元时,超过100万元的部分按1%提成,从键盘输入当月利润I,求应发放奖金总数?3、一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?4、输入某年某月某日,判断这一天是这一年的第几天?5、输入三个整数x,y,z,请把这三个数由小到大输出。6、斐波那契数列。7、将一个列表的数据复制到另一个列表中……
python 表达式和语句及for、while循环练习实例
Python中表达式和语句及for、while循环练习 1)表达式 常用的表达式操作符:x + y, x - yx * y, x / y, x // y, x % y逻辑运算:x or y, x and y, not x成员关系运算:x in y, x not in y对象实例测试:x is y, x not is y比较运算:x y, x y, x = y, x = y, x == y, x != y位运算:x | y, x lt; y, x y一元运算:-x, +x, ~x:幂运算:x ** y索引和分片:x[i], x[i:j], x[i:j:stride]调用:x(...)取属性: x.attribute元组:(...)序列:[...]字典:{...}三元选择表达式:x if y else z匿名函数:lambda args: expression生成器函数发送协议:yield x 运算优先级:(...), [...], {...}s[i], s[i:j]s.attributes(...)+x, -x, ~xx ** y*, /, //, %+, -, lt;, =, , =, ==, !=is, not isin, not innotandorlambda 2)语句: 赋值语句 调用 print: 打印对象 if/elif/else: 条件判断 for/else: 序列迭代 while/else: 普通循环 pass: 占位符 break: continue def return yield global: 命名空间 raise: 触发异常 import: fro……
python matplotlib库绘制条形图练习题
练习一:假设你获取到了2017年内地电影票房前20的电影(列表a)和电影票房数据(列表b),那么如何更加直观的展示该数据? a = ["战狼2","速度与激情8","功夫瑜伽","西游伏妖篇","变形金刚5:最后的骑士","摔跤吧!爸爸","加勒比海盗5:死无对证","金刚:骷髅岛","极限特工:终极回归","生化危机6:终章","乘风破浪","神偷奶爸3","智取威虎山","大闹天竺","金刚狼3:殊死一战","蜘蛛侠:英雄归来","悟空传","银河护卫队2","情圣","新木乃伊",] b = [56.01,26.94,17.53,16.49,15.45,12.96,11.8,11.61,11.28,11.12,10.49,10.3,8.75,7.55,7.32,6.99,6.88,6.86,6.58,6.23] from matplotlib import pyplot as pltimport matplotlib"""绘制条形图"""font = {'family': 'MicroSoft YaHei'}matplotlib.rc('font', **font) # 使支持中文x = ["战狼2","速度与激情8","功夫瑜伽","西游伏妖篇","变形金刚5:最后的骑士","摔跤吧!爸爸","加勒比海盗5:死无对证……