6630157b77a1dea1bb33ab9645aa9ae3f9b50111,lingpy/basic/spreadsheet.py,Spreadsheet,pprint,#Spreadsheet#,385
Before Change
Pretty print the matrix
for i in range(0, len(self.matrix)):
row = ""
for j in range(0, len(self.matrix[i])):
row += self.matrix[i][j]+delim
row = row.rstrip(delim)
print(row)
def print_qlc_format(self):
Print "simple" QLC format.
After Change
Convenice method to pretty print a 2D array.
for row in matrix:
print("\t".join(str(x) for x in row))
def analyze(self, *args):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 11
Instances
Project Name: lingpy/lingpy
Commit Name: 6630157b77a1dea1bb33ab9645aa9ae3f9b50111
Time: 2013-07-25
Author: bambooforest@gmail.com
File Name: lingpy/basic/spreadsheet.py
Class Name: Spreadsheet
Method Name: pprint
Project Name: geekcomputers/Python
Commit Name: 6a40871d5bd21bd8786bc340008dfa8d8bf02b05
Time: 2020-03-17
Author: 62071377+Msubboti@users.noreply.github.com
File Name: Print_List_of_Odd_Numbers.py
Class Name:
Method Name:
Project Name: geekcomputers/Python
Commit Name: 6a40871d5bd21bd8786bc340008dfa8d8bf02b05
Time: 2020-03-17
Author: 62071377+Msubboti@users.noreply.github.com
File Name: Print_List_of_Even_Numbers.py
Class Name:
Method Name: