我們平常用的Ana_3裡面的東西有:
Anaconda 3 的 Python 免費發佈版本, 提供各種工程與科學運算模組套件。
Jupyter, 啟動後即可自動辨識電腦所在的 IP 位址設定, 自動開啟 IPython Notebook 功能。
SciTE 文字編輯器, 經由 python.properties 設定, 可以直接在編輯器中執行簡單的 Python 3 程式。
Leo Editor 大綱管理系統。
Git client 端工具。
Solvespace 3D 參數繪圖程式。
利用(修改過的)start,可以一次啟動上述多套程式,就成為我們用的"環境",stop則相反。
#輸出
print('hello world')
#重複輸出
for i in range(4):
print('hello world')
#添加句中間/句尾的記號
print('hello','world',sep="--",end='!')
#輸出範圍內隨機整數,int為integer(整數)的縮寫
import random
print(random.randint(0,99))
#利用while作條件,break來中斷,continue來迴圈
i = 1
j = 1
while i <= 9:
if i == 8:
break
while j <= 9:
if j == 4:
j += 1
continue
print(i * j, end = " ")
j += 1
i += 1
j = 1
print()
#互動
x=input("輸入一個字")
print("你輸入了"+x)
#導入utf-8來讀取中文
#coding utf-8