10 lines
188 B
Python
10 lines
188 B
Python
import os,sys
|
|
|
|
test = []
|
|
temp = ""
|
|
with open('./edges.csv','r') as fi:
|
|
test = list(map(lambda x: x.strip(), fi.readlines()))
|
|
test = test[1:]
|
|
|
|
print(len(test))
|
|
print(len(set(test))) |