1. 程式人生 > >學習Python第一天(筆記2)2018年12月11號

學習Python第一天(筆記2)2018年12月11號

存一波Python的33個保留字:
and as assert break class continue def elif else except finally for from if import in is lambda not or pass raise return try while with yield del global nonlocal True False None
計算機技術的演進:
1946~1981(第一臺IBM誕生) 計算機系統結構時代(計算能力)
1981~2008 (Android的誕生) pc到移動端 網路到檢視(互動問題)
2008~2016(柯傑失敗) 雲端計算,大資料,網路安全(複雜)(資料問題)
2018~…… 人工智慧 (人類問題,應用問題)

程式語言:
basic,c \c++,c#,css,fortan Go,HTML,java,Javascript,Lua,Matlab,Object c
Pascal Perl,php,python,Ruby,Scala,SQL,Swift,VB.NET(程式語言也是一個江湖)
Python的優勢:
程式碼量少,第三方庫多(工具決定思維)

海龜繪圖體系重要的例項:
畫一個蟒蛇:

#PythonDraw.py
import turtle 
turtle.setup(200,200,0,0,)#前兩項是畫布的大小,後兩項是畫圖的起始位置
turtle.penup()#海龜飛起來
turtle.fd(-250)#倒著走250個畫素
turtle.pendown()#海龜落下
turtle.pensize(25)
turtle.pencolor("green")
turtle.seth(-40)
for i in range(4):
	turtle.circle(40,80)
	turtle.circle(-40,80)
turtle.circle(40,40)
turtle.fd(40)
turtle.circle(16,180)
turtle.fd(80/3)
turtle.done()

在這裡插入圖片描述