Example Program Structure
"""
Triple-quote comment at the top that includes a short description
of what the program does. Includes name of author and date.
Barbara Liskov
Feb. 3, 2024
"""
def main():
print()
print("-----------------------------------------")
print("All programs should have a main function!")
print("-----------------------------------------")
print()
main()
And here is a link to some information about the 2008 Turing Award winner Barbra Liskov.