python查询pip支持的格式
python2
import pip
print(pip.pep425tags.get_supported())
python3
import pip._internal.pep425tags
print(pip._internal.pep425tags.get_supported())
python2
import pip
print(pip.pep425tags.get_supported())
python3
import pip._internal.pep425tags
print(pip._internal.pep425tags.get_supported())