【筆記】嵩天.Python語言程序設計.完成兩個簡單實例(溫度轉換和繪圖)

【博客導航】 【Python相關】html

目標

使用PyCharm,完成兩個小實例的編寫和運行。一個是溫度轉換,一個是蟒蛇圖形繪製。工具

過程

一、先設置project目錄,雖然命名不是很正式,主要不太習慣軟件的目錄結構,好在只是熟悉語言和工具,就先把代碼都放一個目錄下吧。spa

二、能夠打開多個py文件,運行時能夠分別運行,以下圖B部分。記得選擇編譯器。code

三、運行結果見C。orm

總的來講,這些實例都很簡單,主要仍是動手體驗下,對編輯環境的熟悉。htm

代碼

溫度轉換代碼:blog

# Temperature conver, between C and F.

TempStr = input("請輸入溫度,數字+字母F或C結尾:")
if TempStr[-1] in ["F", "f"]:
    temp = (eval(TempStr[0:-1]) - 32) / 1.8
    print("攝氏溫度爲:{:.2f}C".format(temp))
elif TempStr[-1] in ["C", "c"]:
    temp = eval(TempStr[0:-1]) * 1.8 + 32
    print("華氏溫度爲:{:.2f}F".format(temp))
else:
    print("輸入格式錯誤")

 

蟒蛇繪製代碼:ci

#PythonDraw.py
import turtle
#turtle.setup(1290, 730, 0, 0)
turtle.setup(700, 700)
turtle.penup()
turtle.fd(-250)
turtle.pendown()
turtle.pensize(25)
turtle.pencolor("pink") #brown, purple
turtle.seth(-40)
for i in range(3):
    turtle.circle(40, 80)
    turtle.circle(-40, 80)
turtle.circle(40, 80/2)
turtle.fd(40)
turtle.circle(16, 180)
turtle.fd(40 * 2/3)
turtle.done()

 

 

=======================get

by NicoWei
2018-12-5 00:18:08input

=======================

相關文章
相關標籤/搜索