python-基礎教程-pprint
0.摘要
當我們列印很長的陣列時,尤其是二維陣列,顯示出來的內容檢視起來很不方便,本文介紹pprint模組中的pprint方式,能夠更加友好地顯示內容。
1.列印二維陣列
from pprint import pprint
import numpy as np
n1 = np.arange(100).reshape([10,10]).tolist()
print('Normal print format')
print(n1)
print("=====================")
print("Pprint format")
pprint(n1)
'''
result:
Normal print format
[[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], [10, 11, 12, 13, 14, 15, 16, 17, 18, 19], [20, 21, 22, 23, 24, 25, 26, 27, 28, 29], [30, 31, 32, 33, 34, 35, 36, 37, 38, 39], [40, 41, 42, 43, 44, 45, 46, 47, 48, 49], [50, 51, 52, 53, 54, 55, 56, 57, 58, 59], [60, 61, 62, 63, 64, 65, 66, 67, 68, 69], [70, 71, 72, 73, 74, 75, 76, 77, 78, 79], [80, 81, 82, 83, 84, 85, 86, 87, 88, 89], [90, 91, 92, 93, 94, 95, 96, 97, 98, 99]]
=====================
Pprint format
[[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
[10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
[20, 21, 22, 23, 24, 25, 26, 27, 28, 29],
[30, 31, 32, 33, 34, 35, 36, 37, 38, 39],
[40, 41, 42, 43, 44, 45, 46, 47, 48, 49],
[50, 51, 52, 53, 54, 55, 56, 57, 58, 59],
[60, 61, 62, 63, 64, 65, 66, 67, 68, 69],
[70, 71, 72, 73, 74, 75, 76, 77, 78, 79],
[80, 81, 82, 83, 84, 85, 86, 87, 88, 89],
[90, 91, 92, 93, 94, 95, 96, 97, 98, 99]]
'''
傳統的print方式輸出的是很長的一行資料,而pprint輸出的則是多行資料,顯得更加簡潔直觀。
在列印更為複雜的結構時,pprint的效果更加明顯。
相關文章
- python-函式基礎Python函式
- PYTHON-基礎掃盲1Python
- python-資料分析-NumPy的應用-1、基礎Python
- MotionLayout 基礎教程
- jQuery基礎教程jQuery
- Git基礎教程Git
- NMAP 基礎教程
- 【Matlab】基礎教程Matlab
- typora基礎教程
- Obsidian基礎教程
- tkinter 基礎教程
- Python基礎教程Python
- python基礎教程|菜鳥教程Python
- Go 基礎教程--2-基礎知識Go
- 零基礎學Python-尹會生-極客時間Python
- Spring Cloud基礎教程SpringCloud
- Kotlin基礎教程(一)Kotlin
- Python基礎教程.18214570Python
- EasyExcel基礎使用教程Excel
- Python Numpy基礎教程Python
- AIX基礎教程(zt)AI
- Kotlin教程(一)基礎Kotlin
- shell基礎教程二十四: shell基礎教程: Shell檔案包含
- 【莫煩】python基礎教程Python
- windows kernel exploitation基礎教程Windows
- katalon studio基礎使用教程
- web基礎教程:隨筆Web
- C#基礎教程:事件C#事件
- MySQL 教程基礎介紹MySql
- Gurobi基礎教程(Python版)-系列教程2Python
- Python基礎面試題30問!Python基礎教程Python面試題
- 《SQL基礎教程》筆記(3)SQL筆記
- 《簡明 PHP 教程》04 基礎PHP
- MySQL-基礎語法教程MySql
- vue-property-decorator基礎教程Vue
- React Hooks教程之基礎篇ReactHook
- Go 基礎教程--8-mapGo
- ThinkPHP 6.0 基礎教程 - 基本流程PHP