Python: Variables and Scope

When a program runs, it stores the data it requires, in the memory(RAM). A variable is used to store a reference address of a memory. So the program can store that in the reference address and retrieve data when required. In simple language- A variable is a named identifier(of some memory location), and we can … Read more

Python: Program Structure

We can structure our Python program in 3 ways- All these 3 ways can be combined together to create a full program. Sequential Steps Output: Conditional Steps Output: Repeated Steps Output:

Python: Interactive Mode

Interactive mode is the quickest way you can start using Python. To use the Python interactive shell we just need Python installed on the machine. Start Interactive Shell Then just type the command “python“, and you will get into the interactive shell- Or if you have Python 3 installed separately, and available as the command … Read more

Python: Hello World

As a tradition here is the code for the “hello world” program in Python. Create a file with any name you prefer. We are naming the file as “hello”. Then extension of the file should be “.py”. Now, add the following code to the file “hello.py”-

Python function: print() [ printing in Python ]

print function is used to print/output text on the screen or to a file. print() is a built-in function in Python. Generally, we just pass a string as the first parameter, and the string literal is printed. We can use single or double quotes to enclose the string literals, as both are allowed to represent strings in Python.