Indentation

Indentation in Python works like making a topic then adding paragraphs. For every independent block of code you will have the main line then everything under it will be indented once. Example Below

data1 = [120,212,300,232,330]

data2 = [1, 3, 2, 1, 3, 2]


for d in data1:

x = d


for k in data2:

x = x + k


print(x)


print("Complete")