csc-python-solutions/15/a2.py
2021-02-17 10:17:41 +01:00

5 lines
109 B
Python

def findLine(prog, target):
for i in prog:
if i.split()[0] == target:
return prog.index(i)