/56% %7% 将 7 替换 6
56% 去除 中的 6
/56% 以 6 作为分隔符
56% 判断 6 是否在 中
第三章 变量与字符串
$%%
89:;$
8.;$
8-<;$不包括第三个
$1
8:; %=%=:$==
8>1; %=%=:$==
%?@A%5%$%%
第四章函数
B创建定义函数
6#参数
"返回结果
def text_create(name,msg):#
定义函数
desktop_path = '/Users/李天奇/Desktop/'#
桌面路径
full_path = desktop_path + name + '.txt'#
全称路径
file = open(full_path,'w')#
打开
,'w'
参数代表作为写入模式
file.write(msg)#
写入内容
file.close()#
关闭
print('Done')
text_create('hello','hello world')
评论0