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 | Control Flow Tools

Control Flow Tools In this session we will see about control flow tools of python. 1) if Statement:- In the programming language if statement is important statement. Now we see how to write if statement in the python program. For Example:- >>> x = int(input("Please Enter an integer")) Please Enter an integer 50 >>> if x<0:      x=0      print("Negative change to zero") elif x==0: print("Zero") elif x==1: print("One") else: print("More") More >>>  Here is the program of if statement. You can add one or more elif part in the program. else part is the optional.      In the program we take the value of x is 50. In the if statement we write x<0 condition which is false because 50 is not less than 0 so it will go to the next part of the code which is first elif part, here we give condition x==0 this condition is also false so it will go to the second elif part which is x==1 this condition is also f...

Python | Data Structure or Data Types (String)

Data Type Of Python I n the last session we discus about what is the data type of python. And we see List data type. In this session we s ee the next data type String.     2) String- String is a ordered collection of immutable data type. String are iterable and hashable. Strings are always declared in single or double quotes.  Single line string:- S = "Python" Multi line string:- S = """ Line 1             Line 2             Line 3 """ Iterable:- S= "Program" for i in S:       print(i) Output:-  P  r  o  g  r  a  m Membership:-  print( 'p' in S) => True print( 'P' not in S) => False Methods of string:- capitalize() :-  It return the capitalize version of the string. More specifically it make the first character have uppercase and rest lowercase. For example:- S = "hello World" print(S.capitalize()) => "Hello world" count(substring, start,en...