Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Path: lab8 / no.py
Views: 280
1
import math
2
3
def wordcount(fname):
4
file = open(fname)
5
lst = file.readlines()
6
for i in lst:
7
print("No")
8
9