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