Computer Science, asked by shailajashylu30248, 10 months ago

Which of the following lines properly starts a parameterless function definition?
A)def fun:
B)function fun():
C)def fun():
D)fun function():

Answers

Answered by Bphariharan
2

def fun;

is the correct answer

Answered by kunaljangid2k3
1

Answer:

Explanation: Well, answer is def fun():

That's because the command 'def' has function, named 'fun' with no parameter [fun()].

Similar questions