python
python 3.7
.6(default, jan 8
2020,19
:59:22
)[gcc 7.3.0]
:: anaconda, inc. on linux
type "help",,
"credits"
or"license"
for more information.
>>
>
#進入python互動環境
>>
>
#輸入乙個簡單指令
>>
>1+
12
>>
>
#輸出指令
>>
>
print
("hello world!"
)hello world!
>>
>
#退出環境
>>
>exit(
)
>>
> score =
input
("請輸入這次的英語成績:"
)請輸入這次的英語成績:130
>>
>
print
(score)
130
>>
> score =
float
(input
("請輸入這次的英語成績:"))
請輸入這次的英語成績:130.5
>>
>
type
(score)
<
class
'float'
>
>>
>
print
(score)
130.5
注:
在檔案所在本地目錄下,輸入python 檔名.py,即可執行該程式
如果安裝了多個python版本,也可指定使用的python版本,如python3 demo.py
#執行python程式檔案
#進入檔案所在目錄
cd /your/python/
file
/path
#執行python python.py
hello world! #執行結果
注: Tsai筆記 MySQL學習(1) 基本操作
連線sql net start mysql 登陸sql mysql u root p 輸入密碼 退出sql exit 顯示所有資料庫 show databases 建立資料庫 create database tsai show databases 切換資料庫 use tsai 顯示所有資料表 sho...
Git筆記1 基本操作
1 安裝git 安裝完成後,還需要最後一步設定,在命令列輸入 git config global user.name your name git config global user.email email example.com 2 建立git版本庫。又名倉庫,英文名repository 建立乙個...
初識python 基本操作1
python的資料型別,輸入,輸出運算子,if,while迴圈,函式 1.資料型別 這裡是基本介紹,後面會詳細介紹 python3 中有六個標準的資料型別 classa pass class b a pass isinstance a a returns true type a a returns ...