1、變量python
變量格式:linux
變量名 = 變量值ide
例子:[root@localhost~]# python函數
Python2.7 (r27:82500, Jul 28 2016, 02:42:00) spa
[GCC4.4.7 20120313 (Red Hat 4.4.7-4)] on linux2命令行
Type"help", "copyright", "credits" or "license"for more information.orm
>>>a = 2 #定義變量a 等號兩邊有空格字符串
>>> a #查看變量的值方法1it
2io
>>> print a #查看變量的值方法2
2
第1種查看變量值的方法在python的命令行中是可行的。
可是寫在腳本中,執行腳本是不能打印出變量a的值的。
注意:變量名稱不能以數字或是Python的關鍵字開頭。
2、數據類型
python常見的數據類型有:
查看數據類型的函數
type (變量名稱) 這樣就能夠查看出變量的數據類型
1. 數字:
(a)整型(int):
>>> a = 123
>>> type (a)
<type 'int'>
(b) 長整型(ling):
>>> b =12345678901234567890
>>> type (b)
<type 'long'>
(c) 浮點型 (float):
浮點型就是小數
>>> a = 1.2
>>> type (a)
<type 'float'>
(d) 布爾型(False和True): 引用的時候,首字母大寫
>>> 2 > 1
True
>>> 2 < 1
False
>>>
3. 字符串:
當變量的值 #須要注意的是當字符串做爲變量的值的時候,須要用引號引發來
>>> a = 'abc'
>>> type (a)
<type 'str'>
三、類型轉換
(1) str(),repr()或是format()用這個3個內置函數能夠將非字符串類型轉換爲字符串。
例子:>>> a = 1
>>> type(a)
<type 'int'>
>>> a=str(a)
>>> type(a)
<type 'str'>
(2)強制轉換爲整型
int()
(3)轉爲爲浮點型
float()
(4)將字符串轉換爲列表
list()
(5)將字符轉轉換爲元組
tuples()
(6)將字符串轉換爲集合
set()