将<type'google.protobuf.pyext._message.RepeatedScalarContainer'>转换为列表

时间:2019-09-18 10:10:38

标签: python google-cloud-platform

我正在尝试列出dataproc集群以获取工作程序节点名称。代码返回的数据类型是,我想将其转换为列表

for cluster in dataproc_cluster_client.list_clusters(project_id, region):
    if cluster.cluster_name == 'test':
        print(type(cluster.config.worker_config.instance_names))
        print(type(cluster.config.master_config.instance_names))

1 个答案:

答案 0 :(得分:0)

list(cluster.config.worker_config.instance_names)转换为Python列表