问题一:如何随机生成20个数字并且五个为一行总共输出四行?
问题二,chr的作用?顺便在列出一些其他常见函数作用吧谢谢,明天就期末了
2条回答 默认 最新
- 神仙别闹 2021-12-29 16:22关注
问题一
index = np.random.randint(0,20,size=20) for j in index : print(j, end=' ') count += 1 #开始计数 if count % 5 == 0: #每10个换行 print(end='\n')
问题二
chr() 用一个范围在 range(256)内的(就是0~255)整数作参数,返回一个对应的字符。
以下是一些常见函数及作用abs() #获取绝对值 chr() #返回数字对应的ASCII字符 cmp(x,y) #如果x<y 返回-1,x==y返回0 ,x> y返回1 compile() #函数将一个字符串编译为字节代码。 str = 'for i in [1,2,3,4,5,6,7] :print(i)' #name c = compile(str,'','exec') exec(str) exec() #函数将一句string类型的python代码执行 str = 'for i in [1,2,3,4,5,6,7] :print(i)' #name c = compile(str,'','exec') exec(str) eval() #函数将一个算数表达式执行 dict() #函数用来创建字典类型 zip() #函数可以将多个可迭代的对象按照相同的index转化为最短的tuple >>>a = [1,2,3] >>> b = [4,5,6] >>> c = [4,5,6,7,8] >>> zipped = zip(a,b) # 打包为元组的列表 [(1, 4), (2, 5), (3, 6)] >>> zip(a,c) # 元素个数与最短的列表一致 [(1, 4), (2, 5), (3, 6)] >>> zip(*zipped) # 与 zip 相反,可理解为解压,返回二维矩阵式 [(1, 2, 3), (4, 5, 6)] dir() #获取当前类型的方法 print(dir(list)) ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort'] divmod() #函数把除数和余数运算结果结合起来,返回一个包含商和余数的元组(a // b, a % b)。 print(divmod(7,2)) (3, 1) enumerate() #把可遍历的对象组合成一个枚举对象,(索引,字段本身) >>>seasons = ['Spring', 'Summer', 'Fall', 'Winter'] >>> list(enumerate(seasons)) [(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')] >>> list(enumerate(seasons, start=1)) # 小标从 1 开始 [(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')] execfile() #函数可以用来执行一个文件。 format() #用{}和:代替以前的%
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 点云密度大则包围盒小
- ¥15 nginx使用nfs进行服务器的数据共享
- ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
- ¥15 51嵌入式入门按键小项目
- ¥30 海外项目,如何降低Google Map接口费用?
- ¥15 fluentmeshing
- ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
- ¥15 盘古气象大模型调用(python)
- ¥15 传人记程序做的plc 485从机程序该如何写
- ¥15 已知手指抓握过程中掌指关节、手指各关节和指尖每一帧的坐标,用贝塞尔曲线可以拟合手指抓握的运动轨迹吗?