Comment line
What is a Comment line?
Comment lines are lines that are ignored by the interpreter thus making it disappear in the outputs.
This is used to give information about the code.
Evolution of Python
- Python was made in 1989 by Guido Van Rossum at Centrum Wiskunde and Informatica (CWI)
- Python 2.0 was released in December with many new features like list comprehensions and cycle detecting
- Python 3.0 was released in 3 December 2008 with some new semantics and changed syntax
- Python 3.5 had added some new syntax to the language
- Python 3.9 is the oldest supported version of python
- Python 3.10 added the union type operator and the "match "and "case" keywords
- Python 3.11 expanded exception handling Functionality. It is also 10% and 60% faster than Python 3.10.
- Python 3.12 added the new keyword "type". This also adds another 5% extra faster.
- The Python we use till today is Python 3.15

Comments
Post a Comment