作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个代码
,可以打印与VM
相关的信息。 输出
位于类类型
中。如何将其转换
为一种形式以便我能够理解?
from azure.common.credentials import ServicePrincipalCredentials
from azure.mgmt.compute import ComputeManagementClient
credential = ServicePrincipalCredentials(client_id='XXXX',
secret='XXXX', tenant='XXXX')
compute_client = ComputeManagementClient(
credential, 'XXXX')
for vm in compute_client.virtual_machines.list_all():
print(vm.storage_profile)
我正在表单中获取输出
。它显示了此输出
的class
type
<'azure.mgmt.compute.v2019_03_01.models.storage_profile_py3.StorageProfile'>
最佳答案
它正在打印 class
类型,因为您直接调用 variable
而不对其进行转换。为此,您可以创建一个新变量并将转换分配给它并打印该新变量。或者您可以直接在 print 语句中使用,如下所示,
这也是@baileythegreen建议的,感谢您在回答中发布相同的宝贵见解以帮助其他社区成员。
代码:
from azure.common.credentials import ServicePrincipalCredentials
from azure.mgmt.compute import ComputeManagementClient
credential = ServicePrincipalCredentials(client_id='XXXX',
secret='XXXX', tenant='XXXX')
compute_client = ComputeManagementClient(
credential, 'XXXX')
for vm in compute_client.virtual_machines.list_all():
print(vm.storage_profile.as_dict())
有关更多信息,请参阅以下链接:-
所以线程: Azure Python SDK - list VMs and generate custom JSON response
关于python - python SDK如何将类类型转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71758579/
我是一名优秀的程序员,十分优秀!