1樓:匿名使用者
from collections import counterdata = none
#get data from datafilewith open("datafile", "r") as f:
data = f.read().strip().
split()#delete special charactersdata = [_.strip("?,\"") for _ in data]
#count words number
result = counter(data)print result
#get user choice:
input_msg = raw_input("enter your choice: ")
try:
input_msg = int(input_msg)except exception,e:
print "should input number and less than %d"%len(result)
print str(e)
#print result
print "you inputed: %d"%input_msgr = {}
r =print "result: ", r.keys()自己新建乙個叫datafile 的檔案,寫進字串就好了
求這個題目的python編寫,請盡量用簡單的python語言,簡單明瞭,謝謝!
2樓:匿名使用者
你看下面的**行不行:
#階乘def jiecheng(n):
rt = 1
for i in range(1,n+1):
rt *= i
return rt
#轉成二進位制
def inttobin(n):
rt = ''
while(n > 0):
rt = str(n % 2) + rt
n = int(n / 2)
return rt
#最後乙個1的位置
def index1(s):
ns = s[::-1]
wz = len(s) - ns.index('1')return wz
ab = jiecheng(10)
print(ab)
cd = inttobin(ab)
print(cd)
ef = index1(cd)
print(ef)
python菜鳥一問,請大大們解答,謝謝
3樓:小wo_在路上
哥們,需要baiimport string:
>>> import string
>>> string.atoi('10') + 414分析:錯誤原du
因說,zhiname 'string' is not defined,意思是string沒有定義dao。。。所以專import一下就好屬啦。。
4樓:匿名使用者
int('10')
#= python3 的
bai string 包含
du的zhi操dao作版
權 =#
>>>dir(string)
['formatter', 'template', '_templatemetaclass', '__builtins__', '__cached__', '__doc__', '__file__', '__name__', '__package__', '_multimap', '_re', '_string', 'ascii_letters', 'ascii_lowercase', 'ascii_uppercase', 'capwords', 'digits', 'hexdigits', 'octdigits', 'printable', 'punctuation', 'whitespace']
5樓:
import string
6樓:手機使用者
右鍵->edit with idle.
7樓:追風箏的烏龜
print string.atoi('10',4)
python中的冒號怎麼用,python中函式引數列表中使用的冒號是幹什麼用的
函式,迴圈,bai條件,類du定義等後面都是跟著乙個zhiblock,block需要縮排,dao所以這些語句後版面都有乙個冒號。至於為什麼權這樣子,我們又不是研究理論的。死記硬背就可以了。什麼是乙個block。每個語言裡幾乎都有有。就是一組語句。比如函式體,迴圈體,條件分支,類的定義等等都是乙個bl...
簡單的英語翻譯希望某人做某事」怎麼說用高檔一點的詞彙
既然要高檔詞彙,那麼 希望某人做某事 be desirous of one s doing sth.翻譯 be expecting sb to do sth.sb be in hope of someone doing sth.wish sb.to do sth hope sb do expect ...
文字用python的open怎麼不能操作啊
騰訊電腦管家 f open tmp hello w open 路徑 檔名,讀寫模式 讀寫模式 r只讀,r 讀寫,w新建 會覆蓋原有檔案 a追加,b二進位制檔案.常用模式 如 rb wb r b 等等 讀寫模式的型別有 ru 或 ua 以讀方式開啟,同時提供通用換行符支援 pep 278 w 以寫方式...