Tag

reading

0 views collected around this technical thread.

Python Programming Learning Circle
Python Programming Learning Circle
Mar 24, 2025 · Fundamentals

Python File Operations: Opening, Reading, Writing, and Appending Files

This guide explains Python file I/O fundamentals, covering encoding, opening files with different modes, reading methods (read, readline, readlines), writing and flushing data, automatic closing with context managers, and practical examples such as word counting, all illustrated with clear code snippets.

Code ExamplePythonfile-io
0 likes · 7 min read
Python File Operations: Opening, Reading, Writing, and Appending Files
DevOps
DevOps
Oct 24, 2024 · Backend Development

Approaching Theory Books and Essential Backend Development Reading List

The article explores why we read, how to overcome difficulties with theory books by using videos and structured frameworks, and provides a curated list of essential backend development books along with practical advice for turning reading into deeper critical thinking and wisdom.

Backend DevelopmentBook Recommendationslearning strategies
0 likes · 7 min read
Approaching Theory Books and Essential Backend Development Reading List
Test Development Learning Exchange
Test Development Learning Exchange
Jul 13, 2024 · Fundamentals

Python File Operations: Reading, Writing, and Managing Files

This guide demonstrates Python techniques for reading, writing, and manipulating various file types—including text, binary, CSV, and JSON—while also covering file existence checks, renaming, deletion, and directory handling using os and shutil modules.

File I/Oos modulereading
0 likes · 5 min read
Python File Operations: Reading, Writing, and Managing Files
Cognitive Technology Team
Cognitive Technology Team
May 2, 2024 · Fundamentals

How Programmers Can Broaden Their Horizons

The article offers practical advice for programmers to expand their perspective by increasing reading, leveraging quality learning sites, joining technical communities, writing or open‑sourcing code, and staying aware of frontier technologies, emphasizing continuous growth and deeper industry understanding.

Communitycareer developmentlearning
0 likes · 5 min read
How Programmers Can Broaden Their Horizons
php中文网 Courses
php中文网 Courses
Jan 10, 2024 · Backend Development

Using PHP fgetc() to Read Characters from Files and Standard Input

This article explains PHP's fgetc() function for reading a single character from an opened file or standard input, demonstrates how to open files with fopen(), shows example code for character-by-character reading using a while loop, and provides a user input handling example with a switch statement.

fgetcfile-handlingfopen
0 likes · 4 min read
Using PHP fgetc() to Read Characters from Files and Standard Input
Python Programming Learning Circle
Python Programming Learning Circle
Apr 9, 2021 · Fundamentals

Python File I/O: Reading and Writing Files

This article explains how Python interacts with the operating system to open, read, write, and close files using the built‑in open() function, various file modes, error handling, the with statement for automatic resource management, and considerations for binary data and character encodings.

encodingfile-ioreading
0 likes · 7 min read
Python File I/O: Reading and Writing Files