Introduction to python
Collection in Python
Object Oriented python
Python With MYSQL And Excel
Python GUI
Programs in Python
- Swap two number
- Calculate the area
- Even Odd or Zero
- Largest ,Middle and Smallest Number
- Calculate Telephone Bill
- Print Table of The given Number
- Factorial of the number
- Reverse and check number is palindrome
- check number is prime , armstrong
- Program to Print the given patterns
- Guess A Number Game using Random
Input-Output in python
To display on the standard output device following command may be used.
print("This is to print on screen")
Later we will discuss how to send output in files etc.
Take input in Python:
input command may be used to take input from the user as following
n=int(input("enter the number"))
print(n)
Output:
100 (if i entered 100).
Program to take input two numbers and print the sum of the given numbers.
n1=int(input('enter first number\n'))
n2=int(input('enter second number\n'))
n=n1+n2;
print("sum:",n)
Output:
30 [eg. if enter 10 and 20].
Click Here
Tutorials
C is a very powerful and widely used language. It is used in many scientific programming situations. It forms (or is the basis for) the core of the modern languages Java and C++. It allows you access to the bare bones of your computer.C++ is used for operating systems, games, embedded software, autonomous cars and medical technology, as well as many other applications. Don't forget to visit this section...
Video/ C Introduction
Watch video in full size