Loading

摘要: 起因 for循环遍历出 对象(字典、列表、字符串···) 的 键/值 For循环 遍历键 dict = {'Name': 'Runoob', 'Age': 7} for i in dict: print(i) 遍历值 dict = {'Name': 'Runoob', 'Age': 7} for i 阅读全文
posted @ 2020-07-13 17:45 Unixcs 阅读(1061) 评论(2) 推荐(1) 编辑