Examveda

What will be the output of the following Python code?
def f1():
    x=100
    print(x)
x=+1
f1()

A. Error

B. 100

C. 101

D. 99

Answer: Option B


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python