1

Execute multiple python files using a single main

As of the solution in the below link, what is foo baz and bar in python programming and why it is used for?

  • It's answered [here](https://stackoverflow.com/questions/34212049/meaning-of-foo-bar-baz-etc). Technically, they are made up names. They're just calling/importing stuff from the files `one`, `two`, `three`. – samkart Oct 15 '19 at 06:23
  • 1
    TL;DR: https://tools.ietf.org/html/rfc3092 – rdas Oct 15 '19 at 06:24
  • It's just an example functions' name. Nothing specific. – Saharsh Oct 15 '19 at 06:24

1 Answers1

1

It's a metasyntactic variable.

These names are often used as example variables. On python, ham, eggs and spam are used too. Wikepedia says: https://en.wikipedia.org/wiki/Metasyntactic_variable

bb1950328
  • 1,403
  • 11
  • 18