Skip to main content

Python Version List

Python Version List

 Python Versions

Released Date 

 Python 1.0

 January 1994

 Python 1.5

 December 31, 1997

 Python 1.6

 September 5, 2000

 Python 2.0

 October 16, 2000

 Python 2.1 

 April 17, 2001

 Python 2.2

 December 21, 2001

 Python 2.3

 July 29, 2003

 Python 2.4 

 November 30, 2004

 Python 2.5 

 September 20, 2006

 Python 2.6 

 October 1, 2008

 Python 2.7 

 July 3, 2010

 Python 3.0

 December 3, 2008

 Python 3.1 

 June 27, 2009

 Python 3.2 

 February 20, 2011

 Python 3.3 

 September 29, 2012

 Python 3.4 

 March 16, 2014

 Python 3.5 

 September 13, 2015

 Python 3.6 

 December 23, 2016

 Python 3.7 

 June 27, 2018



Comments

Popular posts from this blog

Python | Introduction

Python is developed by Guido van Rossum . Guido van Rossum started implementing python in 1989. Python is very simple programming language so if you are new to programming, you can learn python without facing any issue. Features of Python Free and Open Source -                                                                                      Python is a open source language. We can easily install python.It is freely available at python's official website . High level language -                                                                                     ...

Python | Data Structure Or Data Types (Sets)

Data Type Of Python In this section we will see new data type which is Sets. 3) Sets:- Set object is an unordered collection of distinct unhashable object. The common user include membership test removing duplicate from a sequence and computing mathematical operation such as intersection, union, differences etc.     Being an unordered collection set do not record element position or order of insertion. Accordingly set do not support indexing, slicing, stepping or other sequence like behavior.      We declare a set by using curly braces {}. Note:- Set can only store immutable data. Empty set:-  S = set() Set with multi element:- S = {10, 'Hi', (10, 20)} Membership:- print(10 in S) => True print(20 in S) => False Iteration:- for i in S:       print(i)  => 10       'Hi'       (10,20) Type casting:- S = "Programming" S2 = set(S) print(S2) => {'p', 'r', 'o', 'g', 'a', 'm', 'i', 'n'} In the ...

Python | Data Structures or Data Types (List)

Data Type of Python In Python there are two types of data types which are Mutable and Immutable. Mutable data type contains List and Dictionary data types. And Immutable data type contains String,Tuple and Sets data types. Now we see what is Mutable and Immutable data type? The main object get changed permanently after applying methods of data type this data type is called as Mutable data type. And the main object will not be changed permanently after applying methods of data type this data type is called as Immutable data types. Now we see data types one by one! 1) List - List is an ordered collection of mutable datatype. Lists are hashable, iterable. List contain any kind of data. List are declared in square braces[]. Empty List-  L = [ ] List with multiple elements -  L1 = [10, 15.10, 'Python', [10,20] ] In the above list you can add any data type as shown above. In list L1 there is Integer, float,String,list data types. To add string data type you must have to declared in ...