Computer Science, asked by shahlatief886, 15 hours ago

def C2F(c): return c * 9/5 + 32 print (C2F(100)) print (C2F(O))​

Answers

Answered by anaswarambalip4nuf5
5

def C2F(c):

return (c*9/5+32)

print(C2F(100))

print(C2F(0))

Answer:

212.0

32.0

Similar questions