python

Python

字符串

首字母大写

# 返回每个首字母大小的单词
str ='am i is'
strtitle = str.title()
print(strtitle)

输出:Am I Is

大小写转换

str = 'AM I IS'
# 把字母转换成小写
strtitle = str.lower()
print(strtitle)
# 把字母转换成大写
strtitle = str.upper()
print(strtitle)

输出:am i is
AM I IS

字符串拼接

name = '小明'
age = '18'
info = f'{name}今年{age}岁'
print(info)

输出:小明今年18岁

计算字符串长度

len(str)

获取指定位置的字符

str[2]

格式化

print('{0}今年{1}岁'.format(name,age))

注释

单行注释

# 注释内容

多行注释

"""
  多行注释
"""

For循环

指定范围

for i in range(5,10,2)
参数1:起始值(包含开始值)
参数2:结束值(不包含结束值)
参数3:步长

指定列表

for i in List

遍历字典

rivers = {"Nike":"Egypt","Nike":"Egypt"}
for river,country in rivers.items():
for river,country in rivers.keys():
for river,country in rivers.values():

定义函数

def 函数名(参数...)
	return 返回值

操作文件

读取

f = open('./data/test.txt','r','utf-8')
print(f.read()) # 对文件进行操作
f.readlines() # 对文件进行操作
f.close() #关闭文件,释放资源

读&写

# 追加
f = open('./data/test.txt','a','utf-8')
# 写
f = open('./data/test.txt','a','utf-8')
# 读写
f = open('./data/test.txt','r+','utf-8')

f.write("写入值")

你可能感兴趣的:(python,服务器,开发语言)