Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

SyntaxError: Positional argument follows keyword argument

# Method that takes 3 arguments and returns sum of it
def add_numbers(a, b, c):
    return a+b+c

# call the method by passing only positional arguments
result = add_numbers(10, 20, 30)

# print the output
print("Addition of numbers is", result)
Source by itsmycode.com #
 
PREVIOUS NEXT
Tagged: #Positional #argument #keyword #argument
ADD COMMENT
Topic
Name
6+2 =