Computer Science, asked by rdhandhukiya8, 6 months ago

Find and write the Output of the following Python code: 3
def func (A = 50, B = 10):
A = A/ B
B = A % B
print (A " *" B)
return A
C = 100
D = 20
P = func (CD)
print ("#". D)
C-func (C)
print (C, " #", D)
D = func (C)
print (C " #", D)

Answers

Answered by aakazdx
0

Answer:

syntax is invalid! try writing the code exactly as it is in the question

Similar questions