2. Python - Basics

Commenting:

# hello

## hello


If/Else:

if x==0:

        do

elif x < 0:

        do

else:

        do


Logics:

    & // and

    ^ // exclusive OR, one or other but not both

    += // increment

    -= // decrement


Comments

Popular posts from this blog

2. FreeCodeCamp - Dynamic Programming - Learn to Solve Algorithmic Problems & Coding Challenges

20. Data Analytics - Analyze Data to Answer Questions - Week 1

3. Algorithms - Selection Sort