Python uses indentation instead of curly braces to structure code

Python
if foo:
    print("Hello world")

instead of

if (foo) {
printf("Hello world")
}