9 lines
253 B
Python
9 lines
253 B
Python
import phi_star
|
|
import csv
|
|
|
|
if __name__ == '__main__':
|
|
with open("responses.csv", encoding="utf-8") as file:
|
|
reader = csv.reader(file)
|
|
for row in reader:
|
|
print(row)
|
|
print(phi_star.calculate_phi_star([[1, 1], [1, 1]])) |