You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of teaching "string".upper(), [1,2,3].append(4), etc., do str.upper("string") and list.append([1,2,3], 4). This way, everything is just a function, and the full brilliance of python OOP will hopefully fall as a greater eureka once we actually cover it more carefully in class 6.