當我打印下列信息時它看起來非常難看。 文本顯示非常長,您無法真正閱讀它。Python輸出格式
代碼:
import psutil
print("Disk: ", psutil.disk_partitions())
我得到的輸出是:
Disk: [sdiskpart(device='C:\\', mountpoint='C:\\', fstype='NTFS', opts='rw,fixed'), sdiskpart(device='D:\\', mountpoint='D:\\', fstype='', opts='cdrom'), sdiskpart(device='E:\\', mountpoint='E:\\', fstype='', opts='cdrom'), sdiskpart(device='F:\\', mountpoint='F:\\', fstype='NTFS', opts='rw,fixed'), sdiskpart(device='H:\\', mountpoint='H:\\', fstype='NTFS', opts='rw,removable')]
在一個長行!有沒有辦法來過濾輸出或在多行顯示它?
謝謝你幫助我:)
[pprint(https://docs.python.org/3/library/pprint.html)是你的朋友。 – miku