Python file operationsWhat is file operations? Python file operations refer to the manipulation and interaction with files on the file system using Python code. File operations in Python typically involve opening files, reading or writing data to them, and closing them af...Feb 14, 2024·3 min read
OperatorsWhat are operators? In programming, operators are special symbols or keywords that perform operations on one or more operands. An operand is a value or a variable on which an operation is performed. Types of Operators Here are some common types of op...Jan 29, 2024·4 min read
AWS Scenario based questions on EC2, IAM and VPCIntroduction In this article, we will look into some scenario based questions on EC2, IAM and VPC asked in interviews. Question 1 You have been assigned to design a VPC architecture for a 2-tier application. The application needs to be highly availab...Jan 27, 2024·7 min read
Command line arguments and Environment VariablesWhat are Command line arguments? Command line arguments are values provided to a program when it is executed in the terminal or command prompt. They allow users to pass input dynamically, customizing the behavior of the program. Command line argument...Jan 27, 2024·2 min read
Functions, Modules and PackagesWhat are functions? In programming, a function is a reusable block of code that performs a specific task or a set of tasks. Functions allow you to break down a program into smaller, more manageable pieces, making your code modular, organized, and eas...Jan 26, 2024·4 min read
Keywords, Variables and Best practicesWhat are Keywords? Keywords in programming are reserved words that have special meanings and cannot be used as identifiers (names for variables, functions, etc.) in the source code. Keywords in Python Here are some keywords which are important from D...Jan 22, 2024·5 min read
Data types in PythonLet us take a look at what data types do we have in PythonJan 21, 2024·3 min read