1. 程式人生 > 其它 >實驗二 字串和列表

實驗二 字串和列表

x = list(range(10))

print('整數輸出1: ',end='')
for i in x:
    print(i,end='')

print('\n整數輸出2: ',end='')
for i in x:
 print(f'{i:02d}',end='-')

print('\n整數輸出3: ',end='')
for i in x[:-1]:
   print(f'{i:02d}',end='-')
print(f'{x[-1]:02d}')

print('\n字元輸出1: ',end='')
y1=[str(i) for i in range(10)]
print('-'
.join(y1)) print('字元輸出2: ',end='') y2=[str(i).zfill(2) for i in range(10)] print('-'.join(y2))
name_list = ['david bowie', 'louis armstrong', 'leonard cohen', 'bob dylan', 'cocteau twins']
for name in name_list:
   print(name.title())
print()
name_list_captilize = [name.title() for name in name_list]
print(
'\n'.join(name_list_captilize))
name_list =['david bowie','louis armstrong','leonard cohen','bob dylan','cacteau twins']
name_list2=sorted(name_list)
i=1
for name in name_list2:
     print(i,'.',name.title())
     i+=1
text='''Beautiful is better than ugly.
Explicit is better than implicit.
Simple 
is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren't special enough to break the rules. Although practicality beats purity. Errors should never pass silently. Unless explicitly silenced. In the face of ambiguity, refuse the temptation to guess. There should be one-- and preferably only one --obvious way to do it. Although that way may not be obvious at first unless you're Dutch. Now is better than never. Although never is often better than *right* now. If the implementation is hard to explain, it's a bad idea. If the implementation is easy to explain, it may be a good idea. Namespaces are one honking great idea -- let's do more of those!''' line=text.split('\n') word=text.split(' ') print('行數:',len(line)) print('單詞數:',len(word)) print('字元數:',len(text)) print('空格數',text.count(' '))
book_list = [['靜靜的頓河','肖洛霍夫','金人', '人民文學出版社'],['大地之上','羅欣頓.米斯特里','張亦琦', '天地出版社'],['夜航西飛', '柏瑞爾.馬卡姆', '陶立夏', '人民文學出版社'],
 ['來自民間的叛逆', '袁越', '','新星出版社'],
 ['科技與惡的距離', '珍妮.克里曼', ' 詹蕎語', '墨刻出版社'],
  ['燈塔','克里斯多夫.夏布特','呂俊君','北京聯合出版公司'], ['小行星掉在下午','沈大成', '', '廣西師範大學出版社']]

for i in range(len(book_list)):
       print('{}.《{}》|{}|{}'.format(i+1,book_list[i][0],book_list[i][1],book_list[i][3]))
data=['99 81 75','30 42 90 87','69 50 96 77 89 93','82 99 78 100']
num=0
count=0
for i in data:
    s=i.split()
    for j in s:
        num+=int(j)
    count+=len(s)
print('{:.2f}'.format(num/count))
words_sensitive_list = ['張三', 'V字仇殺隊', '']
comments_list = ['張三因生命受到威脅正當防衛導致過失殺人,經辯護律師努力,張三不需負刑事責任。'
, '電影<V字仇殺隊>從豆瓣下架了','娛樂至死']
for i in range (3):
  comments_list[0]=comments_list[0].replace(words_sensitive_list[i],'*'*len(words_sensitive_list[i]))
  comments_list[1]=comments_list[1].replace(words_sensitive_list[i],'*'*len(words_sensitive_list[i]))
print(comments_list[0],comments_list[1])