हिंदी

Predict the output of the following code: def callon(b=20, a=10): b=b+a a=b-a print(b, "#", a) return b x=100 y=200 x=callon(x, y) print(x, "@", y) y=callon(y) print(x, "@", y) - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Predict the output of the following code: 

def callon(b=20, a=10): 
    b=b+a
    a=b-a
    print(b, "#", a)
    return b
x=100
y=200
x=callon(x, y)
print(x, "@", y)
y=callon(y)
print(x, "@", y)
लघु उत्तरीय

उत्तर

Output: 

300 # 100
300 @ 200
210 # 200
300 @ 210

Explanation: The positional variables x=100 and y=200 supplied are used in the callon() function's initial call. 'a' and 'b' are calculated using these values. Only one of the values of 'y' is supplied into 'b' in the second call to the callon() function, while the default value for 'a' is utilized for the calculation. 

shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2023-2024 (February) Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×