這篇文章主要介紹了python中as用法,實例分析了as的功能及相關使用技巧,非常具有實用價值,需要的朋友可以參考下
本文實例講述了python中as用法。分享給大家供大家參考。具體分析如下:
?
1 import some # some 為一個模組如果想要改變被導入模組在當前模組中的名稱,而不是sys.modules中的名稱。可以使用import as,例如:
?
1 2 import some as other print(other.name)和
?
1 2 3 4 import some other = some del some print(other.name)一樣。
希望本文所述對大家的Python程序設計有所幫助。
注< >:更多精彩教程請關注三聯編程