python資料型別:
number 數字:整數、浮點數、複數
string 字串
boolean 布林值
none 空值
list 列表
tuple 元組
dict 字典
set 集合
# math 數學相關的庫,封裝一些功能
import math
# 自上而下順序執行(面向過程)
age = 27.11
# del age 刪除乙個變數
print("age =", age)
# 檢視變數型別
print(type(age))
# 互動式賦值定義變數
num6, num7 = 6, 7
print(num6, num7)
# 數字型別轉換
print(int(1.9))
print(float(1))
print(int("+123"))
print(int("-123"))
# 返回絕對值
a1 = -10
a2 = abs(a1)
print(a2)
# 求最值
print(max(3, 4, 5, 6))
print(min(3, 4, 5, 6))
# 求x的y次方
print(pow(2, 5))
# round 四捨五入
print(round(3.4))
print(round(3.5))
print(round(3.456, 2))
print(round(3.546, 1))
# 向上取整
print(math.ceil(18.1))
print(math.ceil(18.9))
# 向下取整
print(math.floor(18.1))
print(math.floor(18.9))
# python中print函式
print("hello world!", "today is sunny day!", "tomorrow is rainy day!")
print(22)
print(10 + 8)
print("10 + 8 =", 18)
# python讓使用者輸入
age = input("please input your age: ") # age stores the string of 22 from the console
print("age =", age)
# 加法 addition
num1 = int(input("please input a number:"))
num2 = int(input("please input a number:"))
print("num1 + num2 =", num1 + num2)
2 1 Python 檔案方法
python open 方法用於開啟乙個檔案,並返回檔案物件,在對檔案進行處理過程都需要使用到這個函式,如果該檔案無法被開啟,會丟擲 oserror。注意 使用 open 方法一定要保證關閉檔案物件,即呼叫 close 方法。open 函式常用形式是接收兩個引數 檔名 file 和模式 mode o...
Python學習 2 1Python基本資料型別
這節教程介紹python的主要資料型別,同時會使用python3自帶的idle進行演示效果。首先開啟python3.6自帶的idle。啟動python有兩種方式,分別為 windows命令列視窗 和 idle 我們現在開啟的是python shell。它為你提供了乙個python執行環境。方便你進行...
2 1 資料型別
資料型別是指資料在計算機內部的表達和儲存形式。根據性質和用途,資料被劃分為多種不同的型別。python基本資料型別包括數值型 字串型 邏輯型等。此外,python還有列表 元組 字典和集合等復合型別。數值型資料可以分為整型 實型和複數型。python語言的整型資料即是有符號整數,不帶小數點。在pyt...