
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sarika Singh has Published 118 Articles

Sarika Singh
9K+ Views
Directories and files can be deleted using Python's built-in modules and functions. Removing files or directories is a significant process since, after you've destroyed a directory, it's difficult to get its contents back. Therefore, users can remove the directory and its contents without much difficulty by applying a few useful ... Read More

Sarika Singh
2K+ Views
The purpose of internal buffers, which are created by the runtime, library, and programming language that you're using, is to speed up operations by preventing system calls on every write. Instead, when writing to a file object, you write into its buffer, and when the buffer is full, system functions ... Read More

Sarika Singh
424 Views
The file truncate() method is quite effective. The first reason it is referred to as a method rather than a function is that it comprises the file name (i.e., the object of the file) and a dot operator in addition to other factors (i.e. object of file). Truncation means cutting ... Read More

Sarika Singh
15K+ Views
There are various ways to read files in Python. The most common methods for reading files line by line in Python will be covered. Using readlines() Method Using this method, a file will be opened and its contents will be divided into separate lines. A list of every line in ... Read More

Sarika Singh
11K+ Views
This tutorial looks at various Python comparison techniques for two files. We'll go over how to perform this typical work by using the available modules, reading two files, and comparing them line by line. In Python, comparing two files can be done in a variety of ways. Comparing Two Text ... Read More

Sarika Singh
2K+ Views
Open(), a built-in function in Python, opens a file and returns a file object. Methods and properties in file objects can be used to gather data about the file you opened. They may also be used to modify the mentioned file. Open a file Two arguments are required for this ... Read More

Sarika Singh
5K+ Views
A computer's file system's directory is an organisational feature used to store and locate files. A tree of directories is created by organising directories hierarchically. There are parent-child relationships in directories. A folder can also be used to refer to a directory. Python has accumulated a number of APIs that ... Read More

Sarika Singh
634 Views
Yes, in Python, you can explicitly define the datatype of function parameters and return values using type hints or type annotations. Even if you specify the data types using type hints, Python will still run the code even when the wrong types are passed. The execution of the program will ... Read More