Python Program Fh Input Enter Data N 0 Line Fh Linestartswith N 1 Print N Give 6 Piece Dat Q43789779
this python program
fh = input(“Enter your data:”)
n = 0
for line in fh:
if line.startswith(“*”):
n += 1
print (n)
Should give 6 on this piece of data
*gi|142022655|gb|EQ086233.1|
*gi|142022655|gb|EQ086233.1|
*gi|142022655|gb|EQ086233.1|
*gi|142022655|gb|EQ086233.1|
*gi|142022655|gb|EQ086233.1|
*gi|142022655|gb|EQ086233.1|
but the output only gives 1
Expert Answer
Answer to this python program fh = input(“Enter your data:”) n = 0 for line in fh: if line.startswith(“*”): n += 1 print (n) Shoul…
OR