摘要: 阅读全文
posted @ 2017-03-19 17:55 xiongjiawei 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-19 17:34 xiongjiawei 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-19 17:09 xiongjiawei 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-19 16:35 xiongjiawei 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-19 16:03 xiongjiawei 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-19 15:34 xiongjiawei 阅读(584) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-03-19 14:45 xiongjiawei 阅读(126) 评论(0) 推荐(0) 编辑
摘要: >>> str1="welcom to China">>> str1[2:4]'lc'>>> str1[7]'t'>>> str1=str1[:8]+"中国"+str1[8:]>>> str1'welcom t中国o China'>>> #本质上是重新创建了一个字符串并贴上str1的标签,原来被st 阅读全文
posted @ 2017-03-19 13:38 xiongjiawei 阅读(110) 评论(0) 推荐(0) 编辑
摘要: Python 3.6.0 (v3.6.0:41df79263a11, Dec 23 2016, 07:18:10) [MSC v.1900 32 bit (Intel)] on win32Type "copyright", "credits" or "license()" for more info 阅读全文
posted @ 2017-03-19 12:42 xiongjiawei 阅读(172) 评论(0) 推荐(0) 编辑
摘要: >>> mix = [2,3.4,"abc",'中国',True,['ab',23]]>>> mix[2, 3.4, 'abc', '中国', True, ['ab', 23]]>>> nothing = []>>> nothing[]>>> len(mix)6>>> mix.append('飞狐外 阅读全文
posted @ 2017-03-18 22:51 xiongjiawei 阅读(166) 评论(0) 推荐(0) 编辑