Computer Science, asked by surya9356, 11 months ago

Predict the output: a,b=12,13 c,d=a*2,a/2 print(a,b,c) IN PYTHON

Answers

Answered by satveer2410a
17

a=12

b=13

c=24

These are the outputs.

Answered by midhunamurali2019
3

Answer:

12 13 24

Explanation:

a = 12

b = 13

c = a*2

d = a/2

print(a,b,c)

Similar questions