码迷,mamicode.com
首页 > 其他好文 > 详细

元祖操作相关

时间:2018-08-31 14:48:22      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:相关   nbsp   write   操作   and   read   iba   lis   for   

 

#touple is only read and ont write

tu = (1,2,3,4,‘alex‘,[1,2,3,‘taibai‘],‘egon‘)
# print(tu[3])
# print(tu[0:3])
#
# for i in tu:
# print(i)

# tu[5][3] = tu[5][3].upper()
# print(tu[5])
# tu[5].append("sb")
# print(tu[5])
# s = "alex"
# s1 = "sb".join(s)
# print(s1)
#str ----->list split
#list------>str join
# li = ["taibai", "alex", "wusir"]
#
# s = ‘‘.join(li)
# print(s)

#range

# for i in range(10,0,-1):
# print(i)
#
# # li = range(0,10)
# # print(li)

元祖操作相关

标签:相关   nbsp   write   操作   and   read   iba   lis   for   

原文地址:https://www.cnblogs.com/jly1/p/9565576.html

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