如何查看 python 的可用导入列表?
How can I see a list of available imports for python?
问题:
从终端,我运行什么命令来浏览可用于 python 的可能导入列表?
我刚用 Raspberrian(基于 debian 构建)买了一个 raspberry pi b+。
我正在努力学习如何使用它,每个人都默认使用 python。
我从未使用过微控制器或python作为通用语言。
在我的第一个示例中,我将打开 LED。
我首先注意到的是示例顶行的 import RPi.GPIO as GPIO
import RPi.GPIO as GPIO
led = 11
GPIO.setmode(GPIO.BOARD)
GPIO.setup(led,GPIO.OUT)
GPIO.output(led,GPIO.HIGH)
我不得不使用具有类似导入概念的其他语言工作,但我更好奇我怎么知道我需要导入那个 GPIO 库? raspberry pi 是否有我应该知道的有据可查的库列表?
我觉得这个资源将帮助我了解这个 PI 的可能性。
在Pythonshell中,这将解决您的问题:
help('modules')
你的第二个问题检查 this link。或者只是在 google 中快速搜索,仅此而已。
Also you can check if a module is succesfully installed or not, just import modulename in Python shell, if nothing happens, then you installed it succesfuly. If it gives an error like ImportError: No module named 'modulename' then you did something wrong when you installed that module.
问题:
从终端,我运行什么命令来浏览可用于 python 的可能导入列表?
我刚用 Raspberrian(基于 debian 构建)买了一个 raspberry pi b+。
我正在努力学习如何使用它,每个人都默认使用 python。
我从未使用过微控制器或python作为通用语言。
在我的第一个示例中,我将打开 LED。
我首先注意到的是示例顶行的 import RPi.GPIO as GPIO
import RPi.GPIO as GPIO
led = 11
GPIO.setmode(GPIO.BOARD)
GPIO.setup(led,GPIO.OUT)
GPIO.output(led,GPIO.HIGH)
我不得不使用具有类似导入概念的其他语言工作,但我更好奇我怎么知道我需要导入那个 GPIO 库? raspberry pi 是否有我应该知道的有据可查的库列表?
我觉得这个资源将帮助我了解这个 PI 的可能性。
在Pythonshell中,这将解决您的问题:
help('modules')
你的第二个问题检查 this link。或者只是在 google 中快速搜索,仅此而已。
Also you can check if a module is succesfully installed or not, just import modulename in Python shell, if nothing happens, then you installed it succesfuly. If it gives an error like ImportError: No module named 'modulename' then you did something wrong when you installed that module.