目錄三、python語言系統開發環境配置
四、python程式編寫與執行
4.3 例項2: 同切圓繪製
4.4 例項3: 五角星繪製
五、小結
十天快速入門 python完整教程目錄:
python \\\['paiθən\\\]
,譯為「蟒蛇」
python語言擁有者是python software foundation(psf) psf是非盈利組織,致力於保護python語言開放、開源和發展
guido van rossum
python語言創立者
2023年,python 2.x
2023年,python 3.x
python語言是乙個由程式設計牛人領導設計並開發的程式語言python語言是乙個有開放、開源精神的程式語言
python語言應用於火星探測、搜尋引擎、引力波分析等眾多領域
python直譯器安裝:
互動式和檔案式
根據半徑r計算圓面積
r = 25
area = 3.1415 * r * r
print(area)
1963.4375000000002
print(f'')
1963.44
儲存為calcircle.py檔案並執行
# calcircle.py
r = 25
area = 3.1415 * r * r
print(area) # 1963.4375000000002
print(f'') # 1963.44
繪製多個同切圓
import turtle
turtle.pensize(2)
turtle.circle(10)
turtle.circle(40)
turtle.circle(80)
turtle.circle(160)
儲存為tangentcirclesdraw.py檔案並執行
# tangentcirclesdraw.py
import turtle
turtle.pensize(2)
turtle.circle(10)
turtle.circle(40)
turtle.circle(80)
turtle.circle(160)
繪製乙個五角星
from turtle import *
color('red', 'red')
begin_fill()
for i in range(5):
fd(200)
rt(144)
end_fill()
儲存為stardraw.py檔案並執行
# stardraw.py
from turtle import *
color('red', 'red')
begin_fill()
for i in range(5):
fd(200)
rt(144)
end_fill()
005Python的關鍵字和內建函式
python有一系列關鍵字和內建函式,不能將其用作變數名。如果使用關鍵字命名變數則直譯器會報錯。如果使用內建函式命名變數,不會報錯但會將該內建函式覆蓋,該內建函式不能再使用。檢視python中的關鍵字 第一步 匯入keyword模組 import keyword 第二步 顯示所有關鍵字 print ...
python 開發環境配置
上篇文章配置了虛機基礎環境,本篇文章介紹配置python開發環境 配置yum源使用國內yum源 mv etc yum.repos.d centos base.repo etc yum.repos.d centos base.repo.backup wget o etc yum.repos.d cen...
python開發環境配置問題
linux?windows?mac os?沒有mac os,所以 只能選 linux和windows了。問題一 用什麼方式安裝的問題 無論在linux安裝什麼軟體基本上都有三種方式 原始碼安裝 二進位制安裝 yum安裝。在官網上用的是編譯安裝的方法 在docs裡面的 python setup and...