My program
#import time to sleep
import time
import os
import datetime
print("1 = List all files")
print("2 = Select file")
print("3 = Delete selected")
print("4 = Set path")
#selection
print(" ")
sel = int(input("Enter choice: "))
print(" ")
if sel == 1:
if sel == 2:
if sel == 3:
if sel == 4:
Its saying IndentationError: expected an indented block on Second if Im starting with python, everything helps