我對Python很新,只有20-25天,我已經研究了很多,雖然我已經找到一種方法來利用(首字母),名稱和地址數據通過使用下面的Python代碼,我用'原子編輯器'來編寫代碼,'Powershell'來檢查它。如何將大量數據的首字母大寫?
原始數據:
john deere
apt. no. 23,
9th floor, sixth avenue,
michael street, new arc,
edmonton, canada.
代碼
value = """john deere apt.
no. 23, 9th floor,
sixth avenue, michael street,
new arc,
edmonton,
canada.
"""
# Convert to title case.
result = value.title()
print(result)
結果:
John Deere
Apt. No. 23,
9th Floor, Sixth Avenue,
Michael Street, New Arc,
Edmonton, Canada.
現在假設,如果我要利用這樣的名字&地址這是在「的第一個字母記事本「,每次20個,我該怎麼做,如何輸入數據,以及如何在'記事本'中將其恢復爲輸出。如果有人能指導我,我將非常感激。
這是數據如何顯示在記事本中
john deere apt. no. 23, 9th floor, sixth avenue, michael street, new arc, edmonton, canada.
peter simons. ..address here. ......... ..........
florence nightingale ........... ........... ..........
等等等等....
請標出最佳答案 –