kaggle python七天入門 第一天

2021-10-25 14:01:43 字數 3062 閱讀 5033

3. notebook快捷鍵

kaggle第一天學習內容主要有:

python 語法(syntax)

變數賦值(variable assignment)

number中的整數(int)與小數(float)

算數運算子(arithmetic operator)

notebook 快捷鍵

python名字是源於英國戲劇團monty python,他們曾表演過短劇spam。

我們用與之相關的例子,來引出python的學習。

spam_amount =

0print

(spam_amount)

# ordering spam, egg, spam, spam, bacon and spam (4 more servings of spam)

spam_amount = spam_amount +

4if spam_amount >0:

print

("but i don't want any spam!"

)viking_song =

"spam "

* spam_amount

print

(viking_song)

我們講上述**拆開分析,這個簡單的**塊展示了python中許多重要方面。

spam_amount =

0

print

(spam_amount)

# ordering spam, egg, spam, spam, bacon and spam (4 more servings of spam)

spam_amount = spam_amount +

4

if spam_amount >0:

print

("but i don't want any spam!"

)viking_song =

"spam spam spam"

print

(viking_song)

本節我們不討論太多條件語句(conditionals)

『number』 :是乙個不正式的名稱,數字有他自己的型別:

spam_amount =

0type

(spam_amount)

# int

type

(19.95

)# float

python中的基本運算:

operater

name

description

a + baddition

sum ofaandb

a - bsubtraction

difference ofaandb

a * bmultiplication

product ofaandb

a / btrue division

quotient ofaandb

a // bfloor division

quotient ofaandb, removing fractional parts

a % bmodulus

integer remainder after division ofabyb

a ** bexponentiation

araised to the power ofb

-anegation

the negative ofa

計算機可以做兩種除法。「true division」 和 「floor division」

# the below lines give us a `float`

print(5

/2)#2.5

print(6

/2)#3.0

# ''//' 運算子給我們乙個四捨五入到下乙個整數的結果

print(5

//2)# 2

print(6

//2)# 3

運算順序(order of operations)
total_height_meters =

(hat_height_cm + my_height_cm)

/100

print

("height in meters ="

, total_height_meters)

運算的內建函式(builtin function of working with numbers)
print

(min(1

,2,3

))# 1print

(max(1

,2,3

))# 3print

(abs(32

))# 32

print

(abs(-

32))# 32

print

(float(10

))# 10.0

print

(int

(3.33))

# 3# they can even be called on strings!

print

(int

('807')+

1)# 808

ctrl + enter:執行cell

esc + a(b): 在存在的cell之前(後)增加乙個cel

日曆七天展示

public listgettimeinterval date date system.out.println 要計算日期為 sdf.format cal.gettime 輸出要計算日期 設定乙個星期的第一天,按中國的習慣乙個星期的第一天是星期一 cal.setfirstdayofweek cale...

七天編寫指標 股民大學七天學會指標編寫

第八課 ok.mp4 86.84m 第二課.ok.mp4 78.32m 第九課 ok.mp4 42.21m 第六課第1部分 ok.mp4 906.23m 第六課第2部分 ok.mp4 94.52m 第七課 1 ok.mp4 73.15m 第七課 2 ok.mp4 48.15m 第七課 3 ok.mp...

實習第七天

昨天經理說今天會刮颱風,所以我們要求停課比較好,畢竟我是乙個非常熱愛生命的人,這絕對不是因為我小時候差點被颱風刮走,真的不是因為這個!可是今天一大早,天氣很涼快,可是再如何涼快,還是沒有暴風雨即將來臨的感覺,為此我們捶胸頓足,為什麼停課,停課也不得不去,因為我們還得以實習生的身份過去,說起這ppt,...