萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> 編程語言綜合 >> python簡單的函數定義和用法實例

python簡單的函數定義和用法實例

   這篇文章主要介紹了python簡單的函數定義和用法,實例分析了Python自定義函數及其使用方法,具有一定參考借鑒價值,需要的朋友可以參考下

  這裡定義了一個溫度轉換的函數及其用法。

  ?

1 2 3 4 5 6 7 8 9 def convertTemp(temp, scale): if scale == "c": return (temp - 32.0) * (5.0/9.0) elif scale == "f": return temp * 9.0/5.0 + 32 temp = int(input("Enter a temperature: ")) scale = input("Enter the scale to convert to: ") converted = convertTemp(temp, scale) print("The converted temp is: " + str(converted))

  希望本文所述對大家的Python程序設計有所幫助。

        注< >:更多精彩教程請關注三聯編程

copyright © 萬盛學電腦網 all rights reserved