Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 208 Bytes

python.md

File metadata and controls

17 lines (14 loc) · 208 Bytes

Learn Python

Get Started

Hello World example:

    print("Hello world")

if example:

    if a>b:
        print("a > b")
    else:
        print("a < b")

while example