函数
def fun1(x):
y=x*x
return y
x=2
print(fun1(x))
判断
def charge(a):
a = float(a)
if a<2:
y=2*a
else:
y=3*a
return float(y)
a=input("输入数字:")
print(charge(a))
循环
for n in range(1,50):
for n2 in range(50,100):
print(n,n2)
文件
1、写
f=open('C://Users//fuxingyu//Desktop//tmp.txt',"a",encoding="utf8")
f.write("您好,我是你的朋友")
f.close()
2、读
f=open('C://Users//fuxingyu//Desktop//tmp.txt',"r",encoding="utf8")
content=f.read()
f.close()
a=content.split(',')[0]
print(a)
文件重命名
import os
for file_name in os.listdir('C://Users//fuxingyu//Desktop//taobao_img'): #os.listdir('.')遍历文件夹内的每个文件名,并返回一个包含文件名的list
new_name=file_name.replace("00","")
os.chdir('C://Users//fuxingyu//Desktop//taobao_img')#路径
os.rename(file_name,new_name)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。