Python3學習筆記01-第一個Python程序

在本地安裝好後Python後,進入命令行模式,輸入Python,就進入Python的交互模式:python

C:\Users\user>python
Python 3.5.0 (v3.5.0:374f501f4567, Sep 13 2015, 02:27:37) [MSC v.1900 64 bit
D64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> exit;
Use exit() or Ctrl-Z plus Return to exit
>>> exit()

 

 

小試牛刀,打印第一個程序:編輯器

 

使用文本編輯器編寫代碼,而後再切換到命令窗口執行:命令行

// 切換到D目錄下,保存文件的路徑下
C:\Users\pocouser>D:

D:\> cd Python\python

// 執行文件
D:\Python\python>python hello.py
hello,xiaojun

D:\Python\python>

 

Mac環境中開發:code

在終端先切換到文件所在的目錄,而後再執行hello.py文件orm

相關文章
相關標籤/搜索