python 将字典中的key返回为一个列表
可以直接通过 [*dict] 来实现,示例代码如下test_dict = {'one': [1, 2, 3], 'two': [4, 5, 6]}key_ls = [*test_dict]print(key_ls)print('type of key: '+str(type(key_ls)))输出结果:如果直接使用keys()函数,返回的是dict_keys类型,并不能直接通过下标来索引。示例代码
·
可以直接通过 [*dict] 来实现,示例代码如下
test_dict = {'one': [1, 2, 3], 'two': [4, 5, 6]}
key_ls = [*test_dict]
print(key_ls)
print('type of key: '+str(type(key_ls)))
输出结果:
如果直接使用keys()函数,返回的是dict_keys类型,并不能直接通过下标来索引。示例代码如下所示。
test_dict = {'one': [1, 2, 3], 'two': [4, 5, 6]}
key_it = test_dict.keys()
print(key_it)
print(key_it[0])
可以看到dict_keys并不能通过下标索引。
更多推荐
已为社区贡献1条内容
所有评论(0)