Question 21
Consider the following Python code snippet.
File name: main.py
import sys
def func1(x): return x > 0
def func2(x): return x % 2 == 0
def test_fun3(x): assert func1(x) == True, str(x) + " is not even/odd" assert func2(x) == True, str(x) + " is even number" assert x % 2 != 0, str(x) + " is odd number"
x = int(sys.argv[1])test_fun3(x)Which of the following is the correct combinations of “command line argument” and “assertion error”?