Function Arguments-Python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Function Arguments-Python

Problem: Fill in the blanks to define a function that prints "Yes", if its parameter is an even number, and "No" otherwise. def even(x): if x%2 == 0 print("Yes") **what goes here under the print statement to call the function? Also it is between 1-6 characters.

13th Dec 2020, 5:40 PM
john prost
john prost - avatar
1 Answer
+ 2
#call the function "even()" with an int #also make sure you align your #function call to the far left even(1) even(2)
13th Dec 2020, 5:58 PM
Steven M
Steven M - avatar