^^Python VS C, strongly-typed languages.

 

  Python                    C  C++
multi-line comments no  /* ... */
end of statement EOL or ";" ";" semicolon
string immutable mutable
code block same indentation {} curly brackets
indexing zero based idem
function i/o w/o type i/o with type
a < b < c as in math syntax err
comparison

 

all the same priority

< > <= >= == !=

< > <= >=

== !=  different

multi-line strings are often used as a replacement for multi-line comment