Python OverView
1.1 Python Overview
Python is formally an interpreted language. Commands are executed through the Python interpreter. Programmer usually uses the source code or script to save his command.
1.2 Objects in Python
Assignment statement
It makes this temperature as an identifier and then associates it with the object expressed on the right-hand side of the equal sine.
Because Python is a dynamically typed language it associates an identifier with any type of object.
Instantiation
The process of creating a new instance of a class is known as instantiation. If there were a class named Widget, we could create an instance of that class using a syntax such as w=Widget()
Last updated
Was this helpful?