Values and types used in python


>>> n=1,00,000        First example we have seen of a semantic error
 >>> n
(1, 0, 0)
>>> n=12   Integer
>>> n
12
>>> n="hello"        String
>>> n
'hello'
>>> n=" Welcome to show"         Sentence
>>> n
' Welcome to show'
>>> n=3.12            Floating Number
>>> n
3.12

Welcome Everyone for the world of Python

Python is a fourth generation programming language. Guido van Rossum is the creator of Python. Here we discuss python from the basis to the expert level required for a engineer.