關於python的一道題,求大神解答

2021-03-04 01:35:45 字數 2851 閱讀 1461

1樓:匿名使用者

回inputfile = open(filename, 'r')答dict_word_count = {}if inputfile == none:

print("error: unable to read file", filename)

return

else:

for line in inputfile:

line = line.strip('\n')if not line: continuewords = [word for word in line.split()]

for word in words:

if word in dict_word_count:

dict_word_count[word] += 1else:

dict_word_count[word] = 1print(dict_word_count)

一道python的題目,求大神解答

2樓:匿名使用者

def createworddict(filename):

res = {}

with open(filename) as fp:

for word in fp.read().split():

if word in res:

res[word] += 1

else:

res[word] = 1

return res

跪求一道python的題目解答!

3樓:匿名使用者

def i**ima(mima):

----mima = str(mima)

----if mima.isdigit() and len(mima) ==6:

--------for i in range(1,6):

------------int_i = mima[i]------------int_idel1 = str((int(mima[i-1])+1)**3)[-1]

------------if int_i != int_idel1:

----------------return print('wrong')

--------return print('right')----else:

--------return print('wrong')i**ima(272727)

i**ima(123456)

i**ima('272727')

#字串數字都可以輸入

關於python的一道題目

4樓:自由de王國

>>> def cal():

people = int(raw_input("人們就餐人數:"))bill = float(raw_input("總賬單金額:"))print "每個人都應版

該付出%.1f英鎊權"%(bill*1.1/people)python2.7

一道python題!急求解答!!

5樓:瀟瀟憶佳人

預設直接將自

元素新增到列表最末尾

print(l_a)

# b)

l_b = [54, 36, 74, 28, 50]l_b.insert(3, 66) #insert方法第一個引數為指定要插入的位置

print(l_b)

# c)

l_c = [54, 36, 74, 28, 50]x = l_c.pop(-2) #pop()方法刪除列表中的元素,可以賦給另一個變數

print(x)

# d)

l_d = [54, 36, 74, 28, 50]l_d.sort(reverse = true) #sort方法排序,指定reverse屬性為true,則為降序。預設為false,為升序排序

print(l_d)

# e)

l_e = [54, 36, 74, 28, 50]l_e.clear() #clear方法清除列表中所有的元素print(l_e)

## 望採納

python的一道題求解

6樓:匿名使用者

有幾個問bai題,少冒號,然du后里面的j不需要zhi加一,還有就是daoprint要放到回迴圈中(縮排有答問題)i = 0

for j in range(1,1001):

if j % 20 == 0:

i += 1

print(i,j)

7樓:石卒冫水

for那一行缺少冒號。

if那一行要用==號。

print括號內不需要end的那一部分。

8樓:70後學

20後應該是==,一個等號是賦值,另外j不用加一,for語句會自動遞迴增加。

python簡單題一道 求解答

9樓:匿名使用者

#指令碼du

:zhi

dao#!

版/usr/bin/env python

weight=float(raw_input('please input your weight:'))

high=float(raw_input('please input your high:'))

print ''.format(weight/(high**2))#輸出權:

please input your weight:80please input your high:1.7526.12

一道python的題,求大神幫忙

usr bin python coding utf 8 occur file open hw6 problem 6.txt lines list line for line in file.readlines for line in lines for character in line if ch...

一道python題求大神回答感激不盡

def link zip s,t p pairnode s.a,t.a,none s1,t1,p1 s.nxt,t.nxt,p.nxtwhile s1 and t1 p1 pairnode s1.a,t1.a,none s1,t1,p1 s1.nxt,t1.nxt,p1.nxt 怎麼用python畫...

python的一道題求解,一道python題,求解,。。

有幾個問bai題,少冒號,然du后里面的j不需要zhi加一,還有就是daoprint要放到回迴圈中 縮排有答問題 i 0 for j in range 1,1001 if j 20 0 i 1 print i,j for那一行缺少冒號。if那一行要用 號。print括號內不需要end的那一部分。20...