Python
Python
I am aditya singh chauhan and i am back with another post for computer applications.
Q1. What is python?python full form?why python?
Ans. Python is an interpreted, high level, general purpose programming language.Created by guido van rossum and first released in 1991.python's design philosophy emphasizes code readability with its notable use of significant whitespace.
python doesn't consists of any full form. Python got its name from BBC comedy series "Monty Python's Flying circus".
Python is a general-purpose language, which means it can be used to build just about anything, which will be made easy with the right tools/libraries. Professionally, Python is great for backend web development, data analysis, artificial intelligence, and scientific computing.
Now we are going to start our tutorial of python.
Print() - This function is used to print assigned variable.
ex - a = 23
print(a)
------------------------------------------------------------------------------
Output
23
-------------------------------------------------------------------------------
Print("string") - This way you can able print whatever you want but only in between double quotes because whatever you will write between double quotes it will be ignored by computer and just it will print the string what you have written in between.
String - String is a sentence or a group of words which you want to print.
Variable - Variable is a type of container which can contains integer,string,float,double and you can change the value see example.
---------------------------------------------------------------------------------
a = 32
b = 21
a = 21
c = a+b
print(c)
---------------------------------------------------------------------------------
Output
52
---------------------------------------------------------------------------------
we also called this overwriting.
Enjoy learning! Conquer the concept with concept conqueror .
Comments
Post a Comment