The pass statement is used when there's a syntactic but not an operational requirement. For example - The program below prints a string ignoring the space
xxxxxxxxxx
var="Si mplilea rn"
for i in var:
if i==" ":
pass
else:
print(i,end="")