IP屬地:澳門
函數(shù)作用域:整個文件是全局作用域 函數(shù)里面是局部作用域 遞歸函數(shù):一層一層的執(zhí)行下去,一直到調用完為止 一:手機號判斷 函數(shù)...
字符串替換 st = 'this is python' st.replace('t','T') #更改 st.replace(...
#數(shù)值類型 int float bool complex #序列類型 list[] tuple() str'' #散列類型 dict{'a':1...
while循環(huán)適用于未知循環(huán)次數(shù)的循環(huán),for循環(huán)適用于已知循環(huán)次數(shù)的循環(huán) 。 #whlie 循環(huán) st = 'hello world' n =...
weather = input('今天的天氣咋樣') if weather == 'rain': print('在家學習') elif we...
除(/),取余(%),取整(//) b=input('請輸入您的年齡') a = 1 print(a,end='---') #end讓print...