I have 3 functions in a python script that I would like to run at the same time but from another python script, for example:
def a():
print("\nphrase1")
def b():
print("\nphrase2")
def c():
print("\nphrase3")
I would like to run those 3 functions from a different file. Could anyone support me on that?