Advanced Python: Dot Operator. The operator that enables the… | by Ilija Lazarevic | October 2023
I'll start with a trivial question: “What is a “dot operator”?Here is an example:hello = 'Hello world!'print(hello.upper())# HELLO WORLD!Well, this ...