Author name: Pulla Goud

OS Module in python with examples

The os module in python provides functions for interacting with the operating system. OS comes under python’s  standard utility modules.This module provides a portable way of using operating system. PYTHON OS MODULES FUNCTIONS- Some important functions: 1.Handling the current working Directory 2.Creating a directory 3.Listing out files and directories with python 4.Deleting directory or files …

OS Module in python with examples Read More »

python Variables

Variables are considered to be identifiers having a physical memory location,Which  are  used to hold values temporarily during the program execution. python interpreter can determine on itself that what type of data is stored in the variable,so before assigning a value,variables do not need to ne declared. We use the equal to sign ‘=’ to …

python Variables Read More »

Scroll to Top