f =
open
('g:/邀請函.txt'
,"a+"
)data = f.write(
'誠摯邀請您來參加本次宴會'
)f.close(
)
f =
open
('g:/邀請函.txt'
,"a+"
)data = f.write(
'誠摯邀請您來參加本次宴會'
)f.write(
"\nbest regards\n"
)f.write(
"李雷"
)f.close(
)
with
open
(f'f:\邀請函.txt'
,mode=
'w',encoding=
'utf-8'
)as y:
y.write(
'誠摯邀請您來參加本次宴會。\nbest regards\n李雷'
)
intimates =
['丁一'
,'王美麗'
,'韓梅梅'
]with
open
('f:\邀請函.txt'
,mode=
'r',encoding=
'utf-8'
)as y:
includes = y.read(
)for intimate in intimates:
with
open
('f:\%s邀請函.txt'
%intimate,mode=
'w',encoding=
'utf-8'
)as yy:
yy.write(
'%s:\n'
%intimate)
yy.write(includes)
import os
import shutil
root_path =
'd:/test/'
for name in names:
ifnot os.path.exists(root_path+
'%s/'
%name)
: os.mkdir(root_path+
'%s/'
%name)
shutil.move(root_path+
'%s邀請函.txt'
%name,root_path+
'%s/%s邀請函.txt'
%(name,name)
)path =
'd:\test\丁一\丁一邀請函.txt'
file
=open
(path,encoding=
'gbk'
)print
(file
)print
(file
.read(
))
python程式設計題 python程式設計題庫
上期題目連線 1000道python題庫系列分享十一 9道 上期題目答案 本期題目 機器之心報道機器之心編輯部想要備戰 python 面試,這兩個專案有千道 python 問題與實現。之前機器之心介紹了 phd 大牛的求職之路,很多讀者感覺這位大牛太厲害了,他的經歷對我們幫助不大。對於一般的機器學習...
python常見程式設計題
class student school luffycity count 0 def init self,name,age,self.name name self.age age self.self.count 1 def learn self print s is learning self.na...
Python基礎程式設計題
1 接收輸入的一行字元,統計出字串中包含數字的個數 str input 請輸入一串字元 count 0for i in str if i.isdigit count count 1print 數字個數 d count 2 請輸入星期幾的第一 個字母,用來判斷是星期幾,如果第乙個字母一樣,則繼續判斷第...