021 基本數據類型小結

1、Python基本語法元素

  • 縮進、註釋、命名、變量、保留字
  • 數據類型、字符串、 整數、浮點數、列表
  • 賦值語句、分支語句、函數
  • input()、print()、eval()、 print()格式化

1.1 溫度轉換

# TempConvert.py

TempStr = input("請輸入帶有符號的溫度值: ")
if TempStr[-1] in ['F', 'f']:
    C = (eval(TempStr[0:-1]) - 32) / 1.8
    print("轉換後的溫度是{:.2f}C".format(C))
elif TempStr[-1] in ['C', 'c']:
    F = 1.8 * eval(TempStr[0:-1]) + 32
    print("轉換後的溫度是{:.2f}F".format(F))
else:
    print("輸入格式錯誤")

1.2 保留字

008-Python基本語法元素小結-01.jpg?x-oss-process=style/watermark

1.3 Python基本圖形繪製

  • 從計算機技術演進角度看待Python語言
  • 海龜繪圖體系及import保留字用法
  • penup()、pendown()、pensize()、pencolor()
  • fd()、circle()、seth()
  • 循環語句:for和in、range()函數

1.4 Python蟒蛇繪製

import turtle

turtle.setup(650, 350, 200, 200)
turtle.penup()
turtle.fd(-250)
turtle.pendown()
turtle.pensize(25)
turtle.pencolor("purple")
turtle.seth(-40)
for i in range(4):
    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()

014-Python基本圖形繪製小結-01.jpg?x-oss-process=style/watermark

2、基本數據類型

  • 數據類型:整數、浮點數、複數及
  • 數據類型運算操做符、運算函數
  • 字符串類型:表示、索引、切片
  • 字符串操做符、處理函數、處理方法、.format()格式化
  • time庫:time()、strftime()、strptime()、sleep()等
相關文章
相關標籤/搜索