So when searching on google, the only think I found was printing print() functions all in one line. What I want to do is print multiple functions (like the def function1():) type of function.
if choice == "y":
      dice = input("What are the face values of the dice?")
      for c in dice:
        if c == "1":
          dot1()
I want to be able to print a possible dot2(), or dot3() if the choice is 2, or 3 on that same line. Is that possible? Right now dot1(), 2, and 3 looks like:
def dot1():
  print()
  print(" * ")
  print()
  return()
def dot2():
  print("*")
  print()
  print("  *")
  return()
def dot3():
  print("*")
  print(" *")
  print("  *")
  return()
If so please let me know! Also if you would like more code as an example let me know. This is really bugging me haha
 
     
    