6 “Quick Start” lessons of Python for C++ developer

Lesson 1: "All variables are references" Well they are, but it is a bit different than in C++. ❯ python Python 3.9.0 (tags/v3.9.0:9cf6752, Oct 5 2020, 15:34:40) [MSC v.1927 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> a=10 >>> b=a >>> a=20 >>> b 10 # <--- WTF? … Continue reading 6 “Quick Start” lessons of Python for C++ developer