Computer Science, asked by sugnik11sc2020, 1 month ago

Consider a function with following header:

def info(object, spacing=10, collapse=1):

Here are some function calls given below. Find out which of these are correct and which of these are incorrect stating reasons? For correct function call statements, specify the argument values too.

a) info(obj1)

b) info(spacing=20)

c) info(obj2, 12)

d) info(obj11, object=obj12)​

Answers

Answered by abhaysingh27052019
3

Answer:

info(obj2, 12)

Explanation:

please mark as brainlist

Similar questions