python实现将range()函数生成的数字存储在一个列表中
作者:贾继康 时间:2021-12-19 08:01:51
说明
同学的代码中遇到一个数学公式牵扯到将生成指定的数字存储的一个列表中,那个熊孩子忽然懵逼的不会啦,,,给了博主一个表现的机会,,,哈哈哈好嘛,虽然很简单但还是记录一下吧,,,嘿嘿
一 代码
# coding=utf-8
"""
@author: jiajiknag
程序功能:
"""
# 方法一
lifts = []
for n in range(1,13):
# lift = 1 +6 * np.sin(np.pi * n/12)
lift = 1 + n/12
lifts.append(lift)
print(lifts)
# 方法二
print("------------------------------------")
squares = [1 +i/12 for i in range(1,5)]
print(squares)
二 结果
好嘛,,,有没有很神奇的节奏!
补充知识:Python 通过range初始化list set 等
啥也不说了,还是直接看代码吧!
"""
01:range()函数调查
02:通过help()函数调查range()函数功能
03:Python中的转义字符
04:使用start、step、stop的方式尝试初始化list、tuple、set等
05:使用len()获取list、set、tuple的长度
"""
help(range)
tempRange = range(1,100,2)
print("type(tempRange): " + str(type(tempRange)))
print("tempRange: " + str(tempRange))
tempStr = ""
for i in range(5): # 注意 输出0到4,包括0和4但不包括5.
tempStr += (" " + str(i) + " ")
print("for i in range(5) " + tempStr) #for i in range(5) 0 1 2 3 4
tempStr = ""
for i in range(20,0,-2):
tempStr += (" " + str(i) + " ")
# 注意看输出不包括0
print("for i in range(20,0,-2) " + tempStr)
"""
for i in range(20,0,-2) 20 18 16 14 12 10 8 6 4 2
"""
tempStr = ""
for i in [1,2,3]:
tempStr += (" " + str(i) + " ")
# for i in [1,2,3] 1 2 3
print("for i in [1,2,3] " + tempStr)
tempStr = ""
for i in "Hello world!":
tempStr += (" " + str(i) + " ")
# for i in "Hello world!" H e l l o w o r l d !
print("for i in \"Hello world!\" " + tempStr)
print(list(range(5,10))) # 默认步长1,输出:[5, 6, 7, 8, 9]不包括10
print(list(range(0,10,2))) #输出:[0, 2, 4, 6, 8]
print(list(range(10,0,2))) #输出:[]
print(list(range(10,0,-2))) #输出:[10, 8, 6, 4, 2]
# 尝试使用start、step、stop的方式尝试初始化list、tuple、set等
# print(list(1,9,1)) # TypeError: list() takes at most 1 argument (3 given)
# print(set(1,9,1)) # TypeError: set expected at most 1 arguments, got 3
# print(tuple(1,9,1)) # TypeError: tuple() takes at most 1 argument (3 given)
tempList = list(range(0,10,1));
print("list(range(0,10,1)): " + str(tempList))
tempSet = set(range(0,10,1))
print("list(set(0,10,1)): " + str(tempSet))
tempTuple = tuple(range(0,10,1))
print("list(tuple(0,10,1)): " + str(tempTuple))
tempDic = {"num":1}
print("len(list) :" + str(len(tempList))) # len(list) :10
print("len(set) :" + str(len(tempSet))) # len(set) :10
print("len(tuple) :" + str(len(tempTuple))) # len(tuple) :10
print("len(dic) :" + str(len(tempDic))) # len(dic) :1
# list.append [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'b']
tempList.append('b')
print("list.append " + str(tempList))
# set.add {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'a'}
tempSet.add('a')
print("set.add " + str(tempSet))
来源:https://blog.csdn.net/Jiajikang_jjk/article/details/80445838
标签:python,range,数字,存储
0
投稿
猜你喜欢
Mysql通过Adjacency List(邻接表)存储树形结构
2024-01-18 01:31:37
MySQL安装配置方法教程
2024-01-21 23:35:30
Hadoop-3.1.2完全分布式环境搭建过程图文详解(Windows 10)
2023-08-06 07:04:50
Python轻松搞定视频剪辑重复性工作问题
2022-12-18 16:06:54
VsCode搭建Go语言开发环境的配置教程
2024-05-11 09:09:02
Python测试框架pytest介绍
2023-08-03 01:47:59
选择MySQL数据库进行连接的简单示例
2024-01-24 02:35:50
深入解析Go语言中for循环的写法
2024-05-22 10:11:44
微信公众号可通过现金红包接口发放微信支付现金红包(附开发教程)
2023-06-28 10:24:42
Python 给某个文件名添加时间戳的方法
2023-02-10 21:12:56
Oracle Index 的三个问题
2024-01-14 20:20:40
Python之文字转图片方法
2022-02-12 07:11:10
使用Python的Treq on Twisted来进行HTTP压力测试
2023-01-26 22:29:28
浅谈python中拼接路径os.path.join斜杠的问题
2023-08-21 23:41:23
asp如何向前端显示用户请求的信息?
2010-06-09 18:52:00
C#访问PostGreSQL数据库的方法
2024-01-23 01:00:13
js字放大效果
2010-09-07 12:18:00
golang中值类型/指针类型的变量区别总结
2023-09-02 15:07:11
MySQL特定表全量、增量数据同步到消息队列-解决方案
2024-01-24 04:36:47
MySQL 常用引擎总结分享
2024-01-27 04:05:28