python人工智能爬蟲系列:怎麼查看python版本_電腦計算機編程入門教程自學

首發於:python人工智能爬蟲系列:怎麼查看python版本_電腦計算機編程入門教程自學python

http://jianma123.com/viewthread.aardio?threadid=431編程

本文由簡碼編程原創,保留全部版權,轉載請註明出處。windows

 

本python人工智能爬蟲系列教程基於Python3.0版本,app

將python結合windows桌面開發工具aardio一塊兒作可視化的開發,工具

用python作邏輯處理,用aardio作窗口界面,學習

不用再看着黑黑的python命令行窗口,開發工具

有windows窗體更符合項目須要.網站

學習python編程有不少方向,ui

常見的有人工智能、爬蟲、數據統計、NLP、作網站等,this

而咱們這個系列主要面向「電腦計算機編程入門教程自學」,

以python在人工智能和爬蟲方向爲主。

 

由於python各版本之間有不少兼容問題,

因此第一件事就是先查看它的版本,

若是你使用的是python的完整安裝版本,

在CMD命令行窗口(Windows 使用 win+R 調出 cmd 運行框),

使用如下命令查看咱們使用的Python版本,直接輸入

python -V

它就會提示當前使用的版本了。

 

若是不是安裝版或是沒出來版本號而是提示錯誤,

那換一種方法,用aardio和python結合的方式。

 

運行aardio,而後執行下以aardio代碼:

import console;

//先打開控制檯, 再導入Python, Python才能使用控制檯
console.setTitle("python+aardio");

import py;
py.run();

console.pause()

這時會出現提示:

Python 3.4.3 (default, Oct 26 2017, 02:18:01) [MSC v.1600 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>>

它所提示的Python 3.4.3就是當前使用的版本。

 

 

也能夠在執行以上代碼調出py交互控制檯後,輸入:
 
help()
 
它就會輸出:
 
Welcome to Python 3.4's help utility!
 
If this is your first time using Python, you should definitely check out
the tutorial on the Internet at http://docs.python.org/3.4/tutorial/.
 
Enter the name of any module, keyword, or topic to get help on writing
Python programs and using Python modules.  To quit this help utility and
return to the interpreter, just type "quit".
 
To get a list of available modules, keywords, symbols, or topics, type
"modules", "keywords", "symbols", or "topics".  Each module also comes
with a one-line summary of what it does; to list the modules whose name
or summary contain a given string such as "spam", type "modules spam".
 
help>
 
提示中的 Python 3.4 就是當前使用的版本。
相關文章
相關標籤/搜索