摘要: (2)请用requests库的get()函数访问如下一个网站20次,打印返回状态,text()内容,计算text()属性和content属性所返回网页内容的长度。(不同学号选做如下网页,必做及格)‪‬‪‬‪‬‪‬‪‬‮‬‪‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‮‬‪‬‪‬‪‬‪‬‪‬‮‬‫‬‭‬‪‬‪‬ 阅读全文
posted @ 2023-12-28 23:40 一只蜗牛hhhh 阅读(8) 评论(0) 推荐(0) 编辑
摘要: np.array():创建numpy数组 np.zeros():返回全0数组 np.ones():返回全1数组 np.arange():创建等差数列数组 np.linspace():创建等间隔数列数组 np.reshape():改变数组形状 数组运算 np.add():加法运算 np.subtrac 阅读全文
posted @ 2023-12-28 23:31 一只蜗牛hhhh 阅读(5) 评论(0) 推荐(0) 编辑
摘要: print("05")from random import randomdef printInfo(): # 打印程序介绍信息 print('这个程序模拟两个选手A和B的某种竞技比赛') print('程序运行需要A和B的能力值(以0到1之间的小数表示)')def getInputs(): # 获得 阅读全文
posted @ 2023-12-28 23:11 一只蜗牛hhhh 阅读(12) 评论(0) 推荐(0) 编辑
摘要: import pygameimport sysimport randomfrom PIL import Image # 素材参考地址:https://www.aigei.com/s?q=flappy+bird&type=2dprint("学号后两位05") class Bird(object): " 阅读全文
posted @ 2023-12-28 23:02 一只蜗牛hhhh 阅读(24) 评论(0) 推荐(0) 编辑
摘要: import jiebawith open('红楼梦.txt','r',encoding='utf-8')as f: txt = f.read() words = jieba.lcut(txt) counts={} for word in words: if len(word) == 1: cont 阅读全文
posted @ 2023-12-28 21:55 一只蜗牛hhhh 阅读(119) 评论(0) 推荐(0) 编辑