“Python基础”的版本间的差异
跳到导航
跳到搜索
第49行: | 第49行: | ||
[https://zhuanlan.zhihu.com/p/33033288 python字典遍历的几种方法] | [https://zhuanlan.zhihu.com/p/33033288 python字典遍历的几种方法] | ||
+ | |||
+ | |||
+ | == python文件操作== | ||
+ | |||
+ | ===python读取文件=== | ||
+ | |||
+ | [https://blog.csdn.net/huguangshanse00/article/details/14639871 python 读取文本文件内容转化为python的list] | ||
+ | |||
+ | [https://blog.csdn.net/whatday/article/details/108923273 python 四种逐行读取文件内容的方法] | ||
[[category:devops]] [[category:python]] | [[category:devops]] [[category:python]] |
2021年10月13日 (三) 03:30的版本
Python项目读取配置方式
常见的是 import configparser
python中字典的循环遍历的两种方式
1. 只对键的遍历 一个简单的for语句就能循环字典的所有键,就像处理序列一样: In [1]: d = {'name1' : 'pythontab', 'name2' : '.', 'name3' : 'com'} ...: for key in d: ...: print (key, ' value : ', d[key]) ...: name1 value : pythontab name2 value : . name3 value : com 2. 对键和值都进行遍历 如果只需要值,可以使用d.values,如果想获取所有的键则可以使用d.keys。 如果想获取键和值d.items方法会将键-值对作为元组返回,for循环的一大好处就是可以循环中使用序列解包。 代码实例: or key, value in d.items(): print (key, ' value : ', value) name1 value : pythontab name2 value : . name3 value : com
python3 遍历列表list 四种方法