Python Conferences on August 2016


PyCon Australia 2016
 
12 Aug. – 17 Aug. Melbourne Convention and Exhibition Centre, 1 Convention Centre Pl, South Wharf VIC 3006, Australia 


PyCon APAC 2016
 
13 Aug. – 16 Aug. Trade Center COEX Samseong 1-dong Gangnam-gu, Seoul, South Korea 


PyBay 2016
 
19 Aug. – 22 Aug. UCSF Mission Bay Conference Center, 1675 Owens St., San Francisco, CA 94143, USA 


EuroScipy 2016
 
23 Aug. – 28 Aug. Faculty of Medicine of the University of Erlangen, Germany 


PyCon MY 2016
 
26 Aug. – 29 Aug. City Campus of the International University of Malaya-Wales (IUMW), Kuala Lumpur, Malaysia

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.