多项选择题
以下哪些命令能够使用Python虚拟环境venv?()
A.venv/bin/python
B.sourcevenv/bin/activate
C.workonvenv
D.pipenvshell
点击查看答案
相关考题
-
多项选择题
以下哪些是合法的pip安装命令?()
A.pipinstallDjango>=1.8
B.pipinstall-rrequirements.txt
C.pip-egit+http://git.example.com/MyProject#egg=MyProject
D.pipinstall./SomePackage-1.0.4.tar.gz -
多项选择题
以下哪些魔术方法用于实现上下文管理器(with)?()
A.__with__
B.__enter__
C.__open__
D.__exit__ -
多项选择题
以下哪些结果一定是一个一维列表[’1’,’2’,’3’]?()
A.list("123")
B.map(unicode,range(1,3))
C.[("1"),("2"),("3")]
D.[("1",),("2",),("3",)]
