Python
Python
中,變數分3種Type 型別
,分別是int 整數
、str 字串
、float 浮點數
。Python
是一種弱型別語言
,它會自行偵測變數
型態,但也可以手動調整,甚至可以將變數
從int
變成str
。str 字串
內的單一文字稱為字元
print(10)
Python 編譯器
裡試看看print('Hello World !')
Python 編譯器
裡試看看print('你要輸入的內容')
print(3.14159)
Python 編譯器
裡試看看type() 函數
用於協助判斷括號內的型別,如以下:
print (type (10))
print (type ('Hello World !'))
print (type (3.14159))
# 輸出結果:
# int
# str
# float
可視為變數為一種
暗號
– – > 而暗號
所對應的東西需要被定義,此暗號才會成立。(本質上就是數學運算中的未知數,只是可以在程式運行中隨意更改其值)
x = 10
# x = 暗號名字
# 10 = 暗號對應(也代表此暗號之後只能代表整數
備註(一):之後也可用
指令
更改暗號型別
備註(二):準確說法,在此程式碼中,變數x
被賦值為
10
x = 10
print (type (x))
# 輸出結果:
# <class 'int'>
備註:在
Shell
中,不使用print()
也可輸出型別
變數也有三種型別,分別是
int 整數
、str 字串
、float 浮點數
;前面示範的正是int 整數
,接下來介紹str 字串
和float 浮點數
。
x = 'Hello World !'
y = 3.14159
print (type (x))
print (type (y))
# 輸出結果:
# <class 'str'>
# <class 'float'>
# 可以試試 z = '3.14159' 再去窺探他的型別,就會了解為什麼需要分類
x = 10
y = 2
print (x + y) #加法
print (x - y) #減法
print (x * y) #乘法
print (x // y) #除法(求商)
print (x % y) #除法(求餘)
print (x / y) #除法(除盡)(輸出為浮點數)
print (x * 2 + y * 2) #遵從先乘除後加減
# 輸出結果:
# 12
# 8
# 20
# 5
# 0
# 5.0
# 24
x = '123'
y = '456'
print (x + y)
print (x * 2)
print (x * 2 + y * 2)
# 輸出結果:
# 123456
# 123123
# 123123456456
str 變數
只能做疊加使用
x = 3.14159
y = 6.02214
print (x + y) #加法
print (x - y) #減法
print (x * y) #乘法
print (x // y) #除法(求商)
print (x % y) #除法(求餘)
print (x / y) #除法(除盡)(輸出為浮點數)
print (x * 2 + y * 2) #遵從先乘除後加減
print (type(0.5 * 2)) #原則上浮點數乘以整數仍是浮點數(就算為整數樣貌)
# 輸出結果:
# 9.163730000000001
# -2.8805500000000004
# 18.9190948026
# 0.0
# 3.14159
# 0.5216733586399519
# 18.327460000000002
# <class 'float'>
.0
皆為浮點數Python
中,加減乘除跟一般的時候一樣;但須注意程式語言
的規則中,每次更改 變數
內的 物品
時,它都需要重新確認裡面的物品,也就是每次都要重新 賦值
,以下範例:
x = 10
print (x)
# 輸出結果:
# 10
x = x + 10
print (x)
# 輸出結果:
# 20
x
是要重新定義的變數
,第二個則是重新定義前的變數
;也就是在第二行實際上是x = [10] + 10
。備註:
- 在
Python
中,x += 10
、x -= 10
效果等同於x = x + 10
、x = x - 10
, 但在不同語言不一定可行( Python , C , C++ , Swift , Java , JavaScript 都行 )
未知數
一樣,可以隨意命名(但不能和程式內建的 函數
同名就是了),但大致上還是希望其具有含義,使其可以在具有多行數的程式中更好被判讀;而常用的是 小駝峰命名
,以小寫的單字為開頭,遇到下個單字時,開頭改為大寫(例如:firstName)。int 整數型別
的範例程式碼,只需將 x = 10
, y = 2
更改,就可以進行不同組數字間的運算,而不用逐行修改程式碼。
print (10 + 2) #加法
print (10 - 2) #減法
print (10 * 2) #乘法
print (10 // 2) #除法(求商)
print (10 % 2) #除法(求餘)
print (10 / 2) #除法(除盡)(輸出為浮點數)
print (10 * 2 + 2 * 2) #遵從先乘除後加減
int 整數型別
一模一樣,但我需要將(10 , 2)改成(60 , 15)時,就要費一段功夫,而在 int 整數型別
中只需要更改 x
, y
的賦值,如以下:
x = 60
y = 15
print (x + y) #加法
print (x - y) #減法
print (x * y) #乘法
print (x // y) #除法(求商)
print (x % y) #除法(求餘)
print (x / y) #除法(除盡)(輸出為浮點數)
print (x * 2 + y * 2) #遵從先乘除後加減
or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing