# -*- coding: utf-8 -*-
"""
Created on Fri Dec 17 14:52:59 2021

@author: Sim
"""
f = open("D:/htex/Pythonbk/codesdata/iris.txt", "r")

texts = f.readlines()
f.close()
print(len(texts))
 