initial commit

This commit is contained in:
2025-03-17 02:39:34 +04:00
commit 352c2f87c5
6 changed files with 74 additions and 0 deletions

9
main.py Normal file
View File

@@ -0,0 +1,9 @@
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]]))