2019年6月3日 星期一

Python 簡介、安裝、與快速開始

1. Python 的簡單介紹。 2. 如何安裝 Python,實務操作。 3. 選擇文字編輯器,實務操作 Visual Studio Code。 4. 撰寫、並且執行第一個 Python 程式。
# 資料︰程式的基本單位 # 數字 3456 # 整數 3.5 # 浮點數(小數) # 字串 "測試中文" "Hello World" # 布林值 True False # 有順序、可動的列表 List [3,4,5] ["Hello","World"] # 有順序、不可動的列表 Tuple (3,4,5) ("Hello","World") # 集合 Set {3,4,5} {"Hello World"} # 字典 Dictionary {"apple":"蘋果","data":"資料"} # 變數︰用來儲存資料的自訂名稱 # 變數名稱=資料 x=3 # print(資料) print(x) x=True # 取代舊的資料 print(x) x="Hello" print(x) x={3,5,6} # 集合 Set print(x)

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...