Q. What is the correct way to define a function in Python? (A) function myFunc(): (B) define myFunc(): (C) def myFunc(): (D) func myFunc(): ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) def myFunc(): Explanation: Functions are defined using the `def` keyword.