1樓:囚籠山人六
讓你填乙個帶雙引號的字串。只需要輸入 \" 就可以了。
2樓:匿名使用者
用repr函式
print(repr(""))
3樓:賈伯斯的同學
print """" """"
下面這道題怎麼解?
4樓:匿名使用者
24-12=12(小時)
12-2=10(小時)
5+1.5×10+0.5×12=5+15+6=26(元)答:所以應交停車費26元。
求解 python 練習題 5
5樓:野人拆
import string
def makewordlist(input_file, output_file):
table = string.maketrans("", "")try:
word_list = dict()
for line in open(input_file, 'r'):
line = line.translate(table, string.punctuation).rstrip('\r\n').split(' ')
for word in line:
if not word in word_list:
word_list[word] = 1
else:
word_list[word] += 1
f = open(output_file, 'w')for k,v in word_list.items():
line = '%s %s\r\n' % (k,v)f.write(line)
except:
print input_file,'not exist'
makewordlist('input.txt', 'output.txt')
求大神解決一下這道python 程式設計題 20
6樓:紫薇參星
按照題目要求編寫的列印菱形的python程式如下def diamond(n):
for i in range(1,2*n):
for j in range(1,abs(n-i)+1):
print (' ',end='')
for j in range(1,2*n-2*abs(n-i)):
print ('*', end='')
print()
while true:
n=int(input("請輸入菱形的行數(輸入0結束):"))if n==0:
break
elif n>0:
diamond(n)
else:
continue
源代專碼(注意源**的縮屬進)
各位大神們,這道題怎麼寫,請問下各位大神這道題怎麼做?
第二在裝了這批圖書的 1 4 80 1 5這批圖書共有 300 1 4 1 5 300 1 20 6000 本 答 這批圖書共有6000本。請問下各位大神這道題怎麼做?1 小胖比的是甲和乙同樣在4分鐘完成的字數,這道題不涉及計算過程,考察的是同學對工作量和工作效率概念的理解。對比工作量就是在同樣的工...
請問各位這道題應該怎麼做,請問各位這道題怎麼做?
14 2 12。所以後面的都等於二,4,15,11 4 15 11 請問各位這道題怎麼做?令xy u,下面在xy為中間變數且要求導時用u表示,即f x,xy f x,u u x y,u y x.求z對x的一階偏導數 z x 2xf x,xy x f x,u x f x,u u x f 對y的一階偏導...
各位大神,請問這道題怎麼做?詳細過程
先求an的通項公式,因為an 1 an 2n an a1 2 1 2 2 2 3 2 n 1 33 2 1 2 3 n 1 33 2 1 n 1 n 1 2 33 n n 1 n 2 n 33 an n n 2 n 33 n n 1 33 n 根號 2 n 33 n 1 所以n的取值就是根號 2 n...