when was python released code example

Example 1: when was python created

December 1989
Python was conceived in the late 1980s by Guido van Rossum at Centrum Wiskunde & Informatica (CWI) in the Netherlands as a successor to the ABC language (itself inspired by SETL), capable of exception handling and interfacing with the Amoeba operating system. Its implementation began in December 1989.

Example 2: python

class PrintHello:
  def printnow(self, message):
    self.message = message
    print(message)
 
printer = PrintHello()
printer.printnow("hey")
#completely useless

Example 3: python

#High-level programming language