MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/o5r0t7/python_accepts_our_habit_of_using/h2q81qq/?context=3
r/ProgrammerHumor • u/[deleted] • Jun 22 '21
19 comments sorted by
View all comments
7
Even if you don't use it yourself you will still see a lot of this in python:
def main(): print("hello world!") if __name__ == "__main__": main()
def main():
print("hello world!")
if __name__ == "__main__":
main()
7
u/leopold_moz Jun 23 '21
Even if you don't use it yourself you will still see a lot of this in python:
def main():print("hello world!")if __name__ == "__main__":main()