def cels_to_fahr(cels):
'''
convert Celsius-Fahrenheit
'''
return (cels*9/5) + 32
I have a Question about this symbol (''')(''') what it mean in this code and what their function??
These characters represent a multi-line comment. This method of marking comments is most often used to briefly describe what a function does.
Comments
Leave a comment