Python – Print

In this tutorial, we will learn about print() function in Python. It is used to print specific data as the output on the screen or output device. You can print a Text, number, variable or an object in Python using a print() method. Print Example in Python The print object can be a string or…

Read More »

Python – Input

In this Python tutorial, we will learn how to accept user input in Python. Python has a rich set of built-in functions, in this tutorial we will discuss one of them, input() function for input operation. Python Input Function Python 3 has a built-in function input(), to accept keyboard input. The input() method reads a…

Read More »

Python – Operators

In Python, operators are symbols and used to perform a specific operation on given values. Python has a rich collection of operators, we will learn here. Types of Operators in Python Arithmetic Operators Assignment Operators Relational Operators Logical Operators Bitwise Operators Membership Operators Identity Operators Arithmetic Operators (Mathematical Operators) Arithmetic or Mathematical operators in Python…

Read More »