Skip to content

Instantly share code, notes, and snippets.

@jeffeuxMartin
Created June 24, 2023 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffeuxMartin/cac7065a0b7d26cfcb6aa8df5460db4d to your computer and use it in GitHub Desktop.
Save jeffeuxMartin/cac7065a0b7d26cfcb6aa8df5460db4d to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
from myfunctions import f1, f2, f3
for func in [f1, f2, f3]:
func()
#!/usr/bin/env python3
def f1():
print("I am the first function!")
def f2():
print("I am the second function!")
def f3():
print("I am the third function!")
#!/bin/sh
python main.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment