Reading Time: 2 minutesLogging in Python Logging in Python Table of Contents Introduction to logging module and severity levels Using integers to denote severity levels Logging to a file: filename & filemode Formatting […]
Python
Python: The "_" identifier in Interactive Sessions
Reading Time: 1 minutes_ in Python _ in Python _ in Python: The _ identifier stores the most recently printed expression. This identifier can be used to quickly access the last computed result […]
Python: Variable Swapping
Reading Time: 1 minutesVariable Swapping in Python Variable Swapping in Python: Python makes it really easy to swap values of two or more variables. Example: The way this works is that the expression […]
Using the Standard Library Module ftplib
Reading Time: 1 minutesftplib in Python ftplib in Python ftplib in Python: Python's standard library module ftplib enables users to carry out operations on a remote system using File Transfer Protocol. You can […]
Python: Running Python Scripts
Reading Time: 2 minutesRunning Python Scripts Running Python Scripts: Once you have installed Python, you executed Python scripts (.py files) in the following way: For Windows, press Windows + R for the run […]
Python: Copying a file
Reading Time: 1 minutesCopying a file in Python: You can use either copy() function or copyfile() function of builtin module shutil to create a copy of a file. Copying a file in Python
Python: Getting size of a file on disk
Reading Time: 1 minutesGetting size of a file on disk in Python: Using the stat() function of builtin module os, you can retrieve information about a file on disk, including its size in […]
Why choose Python?
Reading Time: 6 minutesWhy choose Python? Why choose Python? If you are wondering why to learn Python, well, here's why: Easiest-to-learn & Most-enjoyable-to-use: Python is arguably the easiest-to-learn programming language, and the most […]
Python: Ternary Operator/Conditional Expression - x if condition else y
Reading Time: 1 minutesTernary Operator/Conditional Expression in Python Ternary Operator/Conditional Expression in Python A Ternary Operation involves 2 operators and 3 operands. Python offers a shorthand for if-then-else constructs using its ternary operator […]
Python: File Buffering
Reading Time: 3 minutesFile Buffering in Python File Buffering in Python: In the builtin open() function, there is an optional argument, called buffering. This argument is used to specify the file's desired buffer […]