python_day02 上节课知识点回顾
上節(jié)課知識(shí)點(diǎn)回顧:
1、python3和python2多版本共存問(wèn)題
注:需要復(fù)制python36和python27目錄下的python.exe后重命名,復(fù)制scripts下的pip.exe后重命名
2、變量var
注:變量三特性:id/type/value
變量和值之間是綁定關(guān)系
??值是在內(nèi)存中開辟了一塊空間,變量存儲(chǔ)在什么地方后面會(huì)講到。
name='liwj'print(id(name),type(name),name)
38773400 <class 'str'> liwj
3、python3和python2用戶交互用法差異
python3 input()輸入內(nèi)容全部為str類型
python2 raw_inpput()輸入內(nèi)容全部為str類型==python3中的input()
python2 input()輸入內(nèi)容什么類型輸出就是什么類型,int/list/dict
4、eval()
eval() 是將字符串里面的內(nèi)容讀出來(lái),執(zhí)行一遍
res='[1,2,3]'print(type(res)) #str
print(type(eval(res))) #list
res='1,2,3'
print(type(res)) #str
print(eval(res))
print(type(eval(res))) #tuple元組 res='{1,2,3}'
print(type(res)) #str
print(eval(res))
print(type(eval(res))) #set集合
5、python格式一定要有縮進(jìn),4個(gè)空格。
6、while+else用法:else代碼只要沒(méi)有break就會(huì)執(zhí)行
7、python3和python2長(zhǎng)整型區(qū)別:
python2中
8、復(fù)數(shù)
x=1-2jprint(x.real)
print(x.imag)
1.0
-2.0
?
轉(zhuǎn)載于:https://www.cnblogs.com/liweijing/p/7144378.html
總結(jié)
以上是生活随笔為你收集整理的python_day02 上节课知识点回顾的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: PTA 09-排序3 Insertion
- 下一篇: yii2.0 elasticsearc