其他分享
首页 > 其他分享> > 每日总结

每日总结

作者:互联网

今天,进行了python的数据列表的使用,python中的使用和java中的Array数据类似,python中的列表支持不同类型的数据。

# s = "HELLOWORLD"
# h = "nihao"
#
# print(5*s)
# print(max(s))
#
# print("-"*40)
#
# ans = s+h
# print(ans)
# print(s[0:5:1])
#
# print(s[::-1])
#
# #len
# print(len(s))
#
# #index()
#
# print(s.index("H"))
#
# #count()
#
# print(s.count("H"))

# c = [1, 2, "jia"]
#
# print(c)
#
# print(c[0])
#
# lst1 = list('helloworld')
# lst2 = list(range(0,10,2))
#
# print(lst1)
# print(lst2)
#
# del lst2

#列表的遍历
#1
import random

lst = [1,2,6,'h']

for i in lst:
print(i)
#2

for i in range(len(lst)):
print(i, '---->', lst[i])

#3
for i, j in enumerate(lst, 1):
print(i , '---->', j)


lst = [random.randint(1, 100) for _ in range(10)]
print(lst)

标签:总结,lst2,##,每日,len,python,lst,print
来源: https://www.cnblogs.com/wlqyyds/p/16434973.html