码迷,mamicode.com
首页 > 编程语言 > 详细

python--字符串,数值型,列表

时间:2019-10-07 22:59:07      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:字符串   for   list   div   max   python   oat   insert   upper   

#字符串操作
a=‘ abcdefg ‘.title()
print(a)
print(a.lower())
print(a.upper())
print(a.lstrip())
print(a.rstrip())
print(a.strip())
#数
age=‘18‘
b="I am "+ str(float(int(age)))+"everyears hahah!"
print(b)

list=[1,2,3,4,5,6,7,8,9,0]
list.append(‘a‘)
list.insert(-1,1)
del list[-1]
list.pop(-1)

list.remove(0)
list.sort()
len(list)
for i in list:
	print(i)
min(list)
max(list)
sum(list)

squares=[value**2 for value in range(1,11)]
#定义元组
tuple=(value1,value2,value3)

  

python--字符串,数值型,列表

标签:字符串   for   list   div   max   python   oat   insert   upper   

原文地址:https://www.cnblogs.com/fqqwz/p/11632738.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!