MIT 6.100L Introduction to CS and Programming using Python, Fall 2022, by Prof Ana Bell. View full course (Source: MIT.edu , youtube.com) Lecture 1: Introduction to CS and Programming Using Python (1h video) I am starting to go through these videos. Generally, the Prof not only introduces the terms and concepts, she also helps me to remember them. Basically, I am motivated to continue attending her lectures and to find out more on Python. Good to meet such a wonderful professor and many thanks to MIT. Here’s a summary of the first lecture (but it’s better for you to attend). The Prof discusses the idea of an object in Python. Every object in Python has a specific type. The type tells Python the type of things we are allow to do with the object. Once, we have an object, we can assign it to a variable. These variables, basically bind names to objects. The = sign is an assignment, for example, var = type (5*4). The following have been discussed: Expressions involve objects and operatio...