@@ -1211,9 +1211,6 @@ Plot
12111211``` python
12121212# $ pip3 install matplotlib
12131213from matplotlib import pyplot
1214- ```
1215-
1216- ``` python
12171214pyplot.plot(< data_1> [, < data_2> , ... ])
12181215pyplot.show()
12191216pyplot.savefig(< filename> , transparent = True )
@@ -1226,9 +1223,6 @@ Progress Bar
12261223# $ pip3 install tqdm
12271224from tqdm import tqdm
12281225from time import sleep
1229- ```
1230-
1231- ``` python
12321226for i in tqdm(range (100 )):
12331227 sleep(0.02 )
12341228for i in tqdm([1 , 2 , 3 ]):
@@ -1238,13 +1232,13 @@ for i in tqdm([1, 2, 3]):
12381232
12391233Table
12401234-----
1241- #### Prints CSV file as ASCII table:
12421235``` python
12431236# $ pip3 install tabulate
12441237from csv import reader
12451238from tabulate import tabulate
12461239```
12471240
1241+ #### Prints CSV file as ASCII table:
12481242``` python
12491243with open (< filename> , newline = ' ' ) as csv_file:
12501244 reader = reader(csv_file, delimiter = ' ;' )
@@ -1435,7 +1429,7 @@ timeit('"-".join(str(a) for a in range(100))',
14351429```
14361430
14371431### Call Graph
1438- #### Generates a PNG image of call graph with highlighted the bottlenecks.
1432+ #### Generates a PNG image of call graph with highlighted bottlenecks.
14391433``` python
14401434# $ pip3 install pycallgraph
14411435from pycallgraph import output, PyCallGraph
0 commit comments