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

python基础—小结

时间:2018-05-01 12:31:20      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:python   upd   als   alt   xtend   lower   format   AC   for   

####################### 整理 #################

# 一、数字
# int(..)


# 二、字符串
# replace/find/join/strip/startswith/split/upper/lower/format
# tempalte = "i am {name}, age : {age}"
# # v = tempalte.format(name=‘alex‘,age=19)
# v = tempalte.format(**{"name": ‘alex‘,‘age‘: 19})
# print(v)


# 三、列表
# append、extend、insert
# 索引、切片、循环


# 四、元组
# 忽略
# 索引、切片、循环 以及元素不能被修改


# 五、字典
# get/update/keys/values/items
# for,索引

# dic = {
# "k1": ‘v1‘
# }

# v = "k1" in dic
# print(v)

# v = "v1" in dic.values()
# print(v)
# 六、布尔值
# 0 1
# bool(...)
# None "" () [] {} 0 ==> False

python基础—小结

标签:python   upd   als   alt   xtend   lower   format   AC   for   

原文地址:https://www.cnblogs.com/badweather/p/8975744.html

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