Foundations of Python

You are currently auditing this course.
103 / 134

Searching in Files

We can search in the file line by line or by creating a single string for the whole content of the file.

check = 0
with open("/cxldata/python_sample_file") as f:
    for line in f:
        if(line.startswith('w')):
            check = check + 1

startswith function checks if the string is starting with the argument mentioned in the brackets.

Basically, here were searching for the lines in the file which are starting with 'w'.

Can you tell the value of check after the above code is executed?

Get Hint

Answer is not availble for this assesment

Loading comments...