I'm learning Python
and Django
and I have a question.
I would like to know how to define a function that does nothing and continue with the flow of program execution while I read an archive.
while True:
empty()
with open(r'archive.txt') as myfile:
for line in myfile:
print(line)
How I can write a function that does nothing like for example:
def empty():