python如何為函數(shù)和模塊起別名
1、如果要導(dǎo)入的函數(shù)的名稱可能與程序中現(xiàn)有的名稱沖突,或者函數(shù)的名稱太長,可指定簡短而獨(dú)一無二的別名。
frompygameimportmake_bulletasch
此時make_bullet函數(shù)就有個別名,調(diào)用它
ch()
make_billet()
兩個都對
2、關(guān)鍵字as將函數(shù)重命名為你提供的別名。
importpygameasp
調(diào)用pygame中的函數(shù)make_bullet()
p.make_bullet()
以上內(nèi)容為大家介紹了python培訓(xùn)之如何為函數(shù)和模塊起別名,希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。