python函數(shù)中使用for循環(huán)
1、在for循環(huán)中使用函數(shù)需要更長的執(zhí)行時間,因為每次迭代都會調用該函數(shù)。
2、如果for循環(huán)是在函數(shù)內部實現(xiàn)的,那么該函數(shù)只會被調用一次。
實例
#創(chuàng)建一個函數(shù),其中for循環(huán)在函數(shù)內部
defforinfunction(listofstrings):
forxinlistofstrings:
newstring=x.capitalize()
outputstring=x+""+newstring
print(outputstring)
以上內容為大家介紹了python培訓之函數(shù)中使用for循環(huán),希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。