當前位置:首頁 » 編程語言 » python27使用

python27使用

發布時間: 2022-09-01 02:15:24

python27是什麼

python目前主要分為2.x和3.x兩種版本,3.x屬於新版本,與2.x有些不兼容,所以目前使用2.x的人還是佔大多數,python27是指python2.7版本,屬於2.x最新版本

❷ 新手求救python高手..我用的是python27..

兩個問題的代碼都幫你寫出來了,其中都有「輸入的合法性校驗」,這樣可以提高程序的健壯性。
有不明白的地方可以繼續提問。
問題(2):
def initList():
'Function : initList for initing the list for program.'
theList=['','','','','',.......................] # Init your list for this program.
return theList

def outPut(List):
'Function : output the result for client.'
while True:
print('-'*50)
Choice=input("Please input the number : ").strip()[0]
if int(Choice) in range(len(List)):
break
else:
print("Please input your choice again!")
print("The result is ",end=':')
print(List[int(Choice)])

def Main(theList):
'Function : main function of this program.'
List=theList
while True:
outPut(List)

Main(initList()) # Running program.

問題(3):
def initVar():
'Function: init dic for setting a,b and c.'
var={'a':None,'b':None,'c':None}
for v in var:
while True:
value=input("Please input %s :"%v).strip()[0]
try:
NumValue=float(value)
var[v]=NumValue
break
except Exception as e:
print("There is Error ",end=':')
print(e)
print("Please input again!")
print("Finish initing var.")
return var

def Calculate(var):
'Function: calculate equation.'
theVar=var
NumX=0.0
print("The equation is :")
print("y=%fx^2+%fx+%f"%(theVar['a'],theVar['b'],theVar['c']))
while True:
x=input("Please input X : ")
try:
NumX=float(x)
break
except Exception as e:
print("There is Error is ",end=':')
print(e)
print("Please input X again :")
y=NumX*NumX*theVar['a']+NumX*theVar['b']+theVar['c']
return y

def Main():
'Function: main.'
y=Calculate(initVar())
print("The result is : %f ."%y)

Main() #Running program

❸ 如何使用python 2.7.10 內置pip安裝package

python使用內置的pip安裝package很簡單,以WINDOWS下使用為例說明,使用命令pip install 包名即可。
1、在命令行下切換到python目錄,一般為c:\python27,pip在python安裝目錄的Scripts目錄下,命令如下:
cd c:\python27\scripts
2、切換到目錄之後直接使用命令安裝即可,命令如下,例如要安裝flask,則使用:
pip insatll flask
3、其它說明,如果卸載包則使用pip uninstall 包名 來卸載包,以下為pip參數說明:
Usage:
pip <command> [options]

Commands:
install Install packages.
download Download packages.
uninstall Uninstall packages.
freeze Output installed packages in requirements format.
list List installed packages.
show Show information about installed packages.
search Search PyPI for packages.
wheel Build wheels from your requirements.
hash Compute hashes of package archives.
completion A helper command used for command completion
help Show help for commands.

General Options:
-h, --help Show help.
--isolated Run pip in an isolated mode, ignoring
environment variables and user configuration.
-v, --verbose Give more output. Option is additive, and can be
used up to 3 times.
-V, --version Show version and exit.
-q, --quiet Give less output.
--log <path> Path to a verbose appending log.
--proxy <proxy> Specify a proxy in the form
[user:passwd@]proxy.server:port.
--retries <retries> Maximum number of retries each connection should
attempt (default 5 times).
--timeout <sec> Set the socket timeout (default 15 seconds).
--exists-action <action> Default action when a path already exists:
(s)witch, (i)gnore, (w)ipe, (b)ackup.
--trusted-host <hostname> Mark this host as trusted, even though it does
not have valid or any HTTPS.
--cert <path> Path to alternate CA bundle.
--client-cert <path> Path to SSL client certificate, a single file
containing the private key and the certificate
in PEM format.
--cache-dir <dir> Store the cache data in <dir>.
--no-cache-dir Disable the cache.
--disable-pip-version-check
Don't periodically check PyPI to determine
whether a new version of pip is available for
download. Implied with --no-index.
4、注意事項,如果在windows下安裝失敗提示:Unable to find vcvarsall.bat,則說明這個包需要編譯,則要在WINDOWS系統中安裝visual studio 2008。
5、linux下pip安裝package與WINDOWS的語法相同,使用pip install SomePackage
即可,linux下需要注意的是許可權問題,應當使用root用戶執行命令。

❹ python2.7自帶的pip怎麼用

目錄如下:
C:Python27Libsite-packagespip
配置內容:
[global]
index-url =http://pypi.douban.com/simple

在powershell中輸入pip install nose後仍從官方源下載文件,並連接超時失敗

後改為直接在powershell中輸入命令,結果如下:

❺ python 27 可以使用ttfont這個庫嗎

你好reportlab有這個ttfont的庫。他們同時也支持這個python2.7,你可以試試。

❻ 求助大神,在c盤Python27文件夾中存了這個數組txt,然後怎麼能在Python中讀取這個數組

open和括弧之間不能有空格,採用以下語句更好:
with open('xxx.txt') as f:
L=f.readlines()

❼ python27下怎麼用sqlite3

肯定不是放在Lib目錄下的,好像放在python目錄下就可以了。具體記不清楚了,好久以前用過,樓主可以嘗試下

剛親自嘗試了下
如果樓主用的是python2.7的話,還需要下載一個python和資料庫sqlite的介面pysqlite-2.6.3.win32-py2.7這個要安裝。
資料庫sqlite從網上下載後,直接把EXE文件放在C:/PTHON27 目錄下就可以了。

熱點內容
電腦登陸加密 發布:2025-01-16 05:21:57 瀏覽:152
安卓怎麼修復閃退 發布:2025-01-16 05:21:54 瀏覽:554
易盾加密 發布:2025-01-16 05:20:51 瀏覽:894
html上傳圖片的代碼 發布:2025-01-16 05:16:55 瀏覽:601
搭建伺服器租用電信的怎麼樣 發布:2025-01-16 05:12:32 瀏覽:49
phpmysql源碼下載 發布:2025-01-16 05:12:31 瀏覽:211
python安裝依賴包 發布:2025-01-16 05:11:45 瀏覽:996
澳門雲主機品牌伺服器 發布:2025-01-16 05:06:55 瀏覽:769
資料庫設計主要內容 發布:2025-01-16 05:02:02 瀏覽:13
存儲過程如何修改 發布:2025-01-16 05:01:55 瀏覽:634