摘要:
1.首先更新pip3安装工具: pip3 install --upgrade pip 2.下载机器猫的原图 wget http://labfile.oss.aliyuncs.com/courses/370/ascii_dora.png 3.下载python的图像支持库pillow(PIL) pip3 install pillow 4.编辑文件(配置文件有附件) vim ascii.py ... 阅读全文
摘要:
冒泡排序:就是将列表里的混乱的整形或其他进行有效的排序。test1: num=list('2574') n=len(num) print(num) for i in range(0,n): for j in range(i+1,n): if num[i]>num[j]: #a>b c=num[j] #c=b ... 阅读全文
摘要:
要求:通过定义一个列表,来插寻你输入的第N次的整形是多少。spam=[] n=int(input('输入多少次')) for i in range(0,n): spam.append(input('请输入第 '+ str(i+1)+ '次')) print('确认你的内容:') s=input() if s=='yes' or s=='y' or s=='Y': print(spa... 阅读全文
摘要:
元素列表:1在列表最后一位添加元素>>> number=[1,2,3,4,5]>>> number.append(6)>>> print(number)[1, 2, 3, 4, 5, 6]>>> number[1, 2, 3, 4, 5, 6]>>> number.extend([7,8,9])>> 阅读全文
摘要:
1.random模块介绍通过模块参数的调用,可以随机生成不同的整形,浮点型,字符等 2.random参数的解释:随机整数random.randint(0,99)随机偶数random.randrange(0,101,2)随机浮点数random.random()/random.uniform(1,10) 阅读全文