"""輸入一行字元,分別統計出其中英文本母、空格、數字和其它字元的個數。"""import string
content = input("請您輸入內容:")
char = 0
space = 0
digit = 0
other = 0
for i in range(len(content)):
if content[i].isalpha():##判斷是否為字母
char+=1
elif content[i].isspace():##判斷是否為空格
space+=1
elif content[i].isdigit():##判斷是否為數字
digit+=1
else:##其他字元的判斷
other+=1
print(char)
print(space)
print(digit)
print(other)
python string的編碼方式
python2.x 中中間編碼為unicode,乙個字串需要decode為unicode,再encode為其它編碼格式 gbk utf8等 以gbk轉utf8為例 s 我是 字串 gbk編碼 s s.decode gbk encode utf8 將gbk編碼轉換為utf8編碼,需要先轉換為unico...
python string和bytes的關係
python中可以直接使用decode 將bytes格式化成string,decode 裡面可以指定encoding即指定解碼方式。將string轉成bytes可以使用encode 方式,encode 也可以指定編碼方式。首先,python裡面不存在位元組字串的格式化操作,即bytes是沒辦法格式化...
Unity Android互動 aar包的使用
上述部落格講解的很清楚,這裡不再贅述 現作以下補充 按照上述方法匯出的aar包包含unity的classes.jar每次使用壓縮軟體對其刪除比較麻煩,現提出一種不匯入classes.jar到aar的方法 build.gradle中 compile filetree include jar dir l...