Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

Python Syntax

Back


Syntax

Indentation 缩进

if 5 > 2:
 print("Five is greater than two!")
        print("Five is greater than two!")  #error, should use same number of spaces in the same block

TOP