Python module中的全域變數

來源:互聯網
上載者:User

標籤:shell   結果   一個   mod   全域   實現   sleep   import   讀取   

Python module中的全域變數

我想要實現一個python module,這個module中有一些配置項,這些配置項可以被讀取,被修改。一個可行的方案是把這些配置項寫到一個叫settings.py的檔案中。

現在我有一個叫zz的module,它的檔案結構是這樣的:

__init__.py

__all__=[‘sleep‘, ‘wake‘, ‘settings‘]from sleep import fall_asleepfrom wake import wake_up

settings.py

z=-1zz=-1zzz=-1

sleep.py

import zz.settingsdef fall_asleep():    zz.settings.z=1    zz.settings.zz=2    zz.settings.zzz=3

wake.py

import zz.settingsdef wake_up():    print "%d %d %d" % (zz.settings.z,        zz.settings.zz, zz.settings.zzz)

測試檔案是這樣的:

test.py

import zzzz.wake_up()zz.fall_sleep()zz.wake_up()

實驗結果是這樣的

-1 -1 -11 2 3

Python module中的全域變數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.