Join GyanXp WhatsApp Channel! - Join Now
Correct Answer: 2
Correct Answer: निर्णय / Decision
Correct Answer: सूची / List
def func(a, b=5, c=10): print('a is', a, 'and b is', b, 'and c is', c) func(13, 17) func(a=2, c=4) func(5,7,9)
Correct Answer: a is 13 and b is 17 and c is 10<break-line>a is 2 and b is 5 and c is 4<break-line>a is 5 and b is 7 and c is 9
list1 = [1, 3] list2 = list1 list1[0]=4 print(list2)
Correct Answer: [4, 3]
Not registered yet? Sign up
By login, you agree to our Privacy & Policy & Disclaimer
Send OTP
Verify OTP