一、字符操作
1、字符串拼接
wenben1 = 'i am'
wenben2 = ' home'
final = wenben1 + wenben2
print(final)
2、填加制表符、换行
print("\tPython")
print("Ptyhon\nPython2\nPython3")
\n\t 结合使用也可以
3、删除空白
'python' 与 'python ' 、' python '在文件本内看并无区别 rstrip()去末尾,strip()首尾都会去除,lstrip()去除首部空格
ccdp = ' konggeceshi '
print(ccdp)
print(ccdp.lstrip())
print(ccdp.rstrip())
print(ccdp.strip())
print 输出格式化
port = 135
print(f'openportis {port}')
输出结果如下 :
4、单双引号
双引号包单引号即可
二、数据运算
1、加减乘除格式
re = 2 + 3
reb = 3 - 2
rec = 2 * 3
red = 3 / 2
ref = 3 ** 3 #平方运算
reg = 2 + 3*4
reh = (2+3)*4
print(re,reb,rec,red,ref,reg,reh)
2、str() int转换为字符
age = 23
message = "Happy " + str(age) + "rd Birthday!"
print(message)
三、列表
1、列表打印
打印序列会把单引号打印出来
family = ['father','mother','son','daughter']
print(family)
只打印值
print(family[0])
print(family[3].title())
2、修改元素\列表末尾添加元素
修改family[0]元素
family = ['father','mother','son','daughter']
print(family)
family[0] = 'aaaa'
print(family)
append末尾新增元素
family.append('newadd')
print(family)
使用insert列表中插元素
family.insert(0,'num00')
print(family)
#使用del删除元素,del可以删除任意位置的元素
del family[0]
print(family)
pop用法
3、排序
永久性排序,正序sort,倒序sort(reverser=True)
office = ['actx','bkj','ckj']
office.sort()
print(office)
office.sort(reverse=True)
print(office)
sorted ,临时显示正序,列表顺序还保持原状
office1 = ['hkl','zko','rlj']
print(office1)
print(sorted(office1))
print(office1)
reverser 倒序
office1.reverse()
print(office1)
len列表长度
print(len(office1))
四、for、if、while用法
遍历整个列表,for循环必须有缩进
1、for循环
#打印元组
office1 = ['hkl','zko','rlj']
for i in office1:
print(i)
#python打印字典key value
re = {'a':'b'}
for k,v in re.items():
print(k,v)
range用法,输出少一,倒第二个值处停止 使用range创建数值列表
for value in range(1,5):
print(value)
numbers = list(range(1,6))
print(numbers)
指定步长,打印偶数
even_numbers = list(range(2,11,2))
print(even_numbers)
2、切片
切片,使用列表的一部分,要创建切片可以指定使用第几个元素 使用0,1,2 三个元素
command = ['ls','cd','ip','top']
print(command[0:2])
3、if语法格式
if-elif-else用法,小于4岁不花钱,4-18 5块钱,其它10块钱
age = 12
if age < 4:
print('cost 0')
elif age < 18:
print('cost 5')
else:
print('cost 10')
4、while循环
input用法
message = input("input what you want:")
print(message)
输出1-5
current_number = 1
while current_number <= 5:
print(current_number)
current_number +=1
输入quit结束
prompt = "\n plz enter the city:"
while True:
city = input(prompt)
if city == 'quit':
break
else:
print('i,d love to go city')
删除包含特定值的所有列表元素
pets = ['dog','cat','dog','cat','rabbit']
print(pets)
while 'cat' in pets:
pets.remove('cat')
print(pets)
二、函数调用
def my_len(str):
length = 0
for c in str:
length = length + 1
return length
#调用自定义的 my_len() 函数
length = my_len("http://c.biancheng.net/python/")
print(length)
#再次调用 my_len() 函数
length = my_len("http://c.biancheng.net/shell/")
print(length)
二、函数 1、startwith cm_client中,cluster判断cluster版本是否以6.开头
for cluster in api_response.items:
if cluster.full_version.startswith("6."):
三、打开文件的几种方法
#! /usr/bin/python
# -*- coding: utf-8 -*-
import os
import sys
#遍例目录
for path,dir_list,file_list in os.walk("/opt/log/"):
for file_name in file_list:
#os.path.join
print(os.path.join(path,file_name)) #遍历目录并打印文件
#一行一行输出,每一行是一个字符串str
with open('/opt/log/xxx.log','r') as f:
for line in f:
print(line)
#read() 把全部文件讲到一个字符串,再全部输出
with open('/opt/log/xxx.log','r') as f:
ff=f.read() #按行输出
for line in ff:
print (line) #利用循环,每次输出一个字母
#使用readline打开,按行来读,比较省内存
with open('/opt/log/xxx.log','r') as f:
line = f.readline()
while line:
print (line)
line = f.readline()
f.close
#with open 基于上下文,会自动关闭文件.无需close()
#使用for 打印txt
for line in open("/opt/script/prodip.txt"):
print(line)