1. 程式人生 > 其它 >實驗2 字串4.9

實驗2 字串4.9

def:

所有  感悟  總結用法……都在截圖 程式碼的註釋裡面

 

 

task 7

 

#task   4 敏感詞彙打碼
words_sensitive_list = ['張三', 'V字仇殺隊', '']
comments_list = ['張三因生命受到威脅正當防衛導致過失殺人,經辯護律師努力,張三不需負刑事責任。',
                 '電影<V字仇殺隊>從豆瓣下架了',
                 '娛樂至死']

for com in comments_list:
    for word in words_sensitive_list:
        
if word in com: com = com.replace(word,'*'*len(word)) print(com)

task6

sum = 0
num = 0
csv = [99,81,75,
       30,42,90,87,
       69,50,96,77,89,93,
       82,99,78,100]
for i in csv:
    sum +=int(i)
    num +=1
print('%.2f'%(sum/num))
print(f'{sum/num:<4.4}')

 

book_list = [['靜靜的頓河
', '肖洛霍夫', '金人', '人民文學出版社'], ['大地之上', '羅欣頓.米斯特里', '張亦琦', '天地出版社'], ['夜航西飛', '柏瑞爾.馬卡姆', '陶立夏', '人民文學出版社'], ['來自民間的叛逆', '袁越', '', '新星出版社'], ['科技與惡的距離', '珍妮.克里曼', ' 詹蕎語', '墨刻出版社'], ['燈塔', '克里斯多夫.夏布特', '呂俊君', '北京聯合出版公司'], ['小行星掉在下午
', '沈大成', '', '廣西師範大學出版社']] for i in range(7): print(f'{i+1}.《{book_list[i][0]}》|{book_list[i][1]}|{book_list[i][3]}')

task5

task4

text = '''The Zen of Python, by Tim Peters

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!'''

print(f'字元數:{len(text)}')
print('空格數',text.count(' '))
print('單詞數:',len(text.split()))
print('行數:',len(text.splitlines()))

task 3

name_list2 = ['DAnox turmo','li vion',
              'hh op']
name_list3 = sorted(name_list2)
for name1 in name_list3:
    print(f'{name1}'.title(),end='.')
name_list = ['DAxk','Tuermp','obanma','van','baNajxja',
             'tshe']
for name in name_list:
    print(name.title(),end=',')

name_list_cap = [name.title() for  name in name_list]
print('\n'.join(name_list_cap))
# 裡面元素打印出來還是數字 range與list
x = list(range(10))

print('列印整數:')
for i in x :
    print(i,end='')

#輸出整數寬度為2 不足用2補齊   zfill    {i:02d/f}
print('\n整數資料型別補齊:',end='')
for i in x :
    print(f'{i:02d}',end='-')
print(f'{i:}'.zfill(4),end='-')       #'???'.zfill   or    'f'{x:}'.zfill  補齊0'   (資料長度)
print('x'.zfill(2))

print('整數輸出2:',end='')
for i in x[:-1]:                    #切片 1-倒數第一個資料
    print(f'{i:02d}',end='-')
print(f'{x[-1]:02d}')             #索引x的最後一個數據

#zfill join只有字元型別與{}才能用
print('\n數字輸出3:')
y = [str(i) for i in x]
print('-'.join(y))              #join 是後面加前面的

print('\n資料輸出3:',end='')
y1 = [str(i).zfill(2) for  i in x]
print('-'.join(y1))