Courses

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 »

Python – Data Types

In the previous chapter, we had learned about variables. In this tutorial, we will discuss data types in Python language. In Python programming, data types are inbuilt and need not declare the type of a variable. Everything in Python is an object, so data types are classes and variables are known as an object. Numeric…

Read More »

Python – Variable

In this tutorial, we will learn about variables in Python. we will also discuss to define a variable, assign a value to variables in Python. What is Variable: In Python, variables are a memory location. It can store values like numbers and text. The value of a variable can be changed. The variable is always…

Read More »

Python – First Program

In this tutorial, we will learn how to run the first python program using scripting mode. We will also discuss comments in python. So far you have learned to install python and IDLE, to start your first program, you need to search and open IDLE in your PC. Now from python shell, select New from…

Read More »

Python – First Step

We will learn here how to write and run python programs. Before you start, you should have Python installed on your computer. Install Python and IDLE Python comes pre-installed with Ubuntu and Mac OS, but it does not come pre-installed with the Windows operating system. You need to download and install manually from the official…

Read More »

C File Handling

We have learned lots of things in c programming, accept user input, execute, and print results on the terminal(output) window. But results are not store permanently, to store data for future reference we are using file handling in c language. Now, instead of accepting input and printing results from the terminal, we will use a…

Read More »