בעיה | הפונקצייה main
-
@מישהו12
מה זה "מבנה של הפונקציה"
אם אני כותב את הפונקציה הבאה:def func(num1,num2): ... """Multiplies two numbers inserted into it ... :param num1: base value ... :param num2: exponent value ... :type num1: int ... :type num2: int ... :return: The result of raising base to the power exponent ... :rtype: int ... """ ... return num1 * num2 ...
איך אני אמור לעשות אותה במבנה של הפונקצייה main?