DeveloperBreeze

Snippets Programming Tutorials, Guides & Best Practices

Explore 196+ expertly crafted snippets tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

File Reading and Writing

Code January 26, 2024
python

No preview available for this content.

Read and Display Filename from a Text File

Code January 26, 2024
python


# Open the file in read mode
with open('filename.txt', 'r') as fo:
    # Print the file name
    print(f'Filename is: {fo.name}')

    # Read and print the contents of the file
    content = fo.read()
    print('File Content:')
    print(content)

    # Count and display the number of lines in the file
    fo.seek(0)  # Reset pointer to the beginning
    lines = fo.readlines()
    print(f'Total Lines: {len(lines)}')