我在使用Python中的__import_函數導入包之後調用包時遇到問題。我會注意到使用通常的import x as y工作正常,但這對我來說是一個學習練習。我正在導入,然後檢查多個軟件包的版本,並且學習一些關於Python的知識,我想通過使用字典來自動化這個。 我的字典裏看起來是這樣的: pack = {"numpy": ["np", "1.7.1"]}
,然後我用這個來加載和檢查模塊: f
我想要編寫單元測試使用unittest一些代碼: https://docs.python.org/3/library/unittest.html 假設每個測試我寫需要導入math,os和datetime模塊。現在,我輸入他們在每個我寫的測試: #...code for which I'm writing the unit tests...
import unittest
class Test