0,The Zen of Python
powershell>>>python>>>import this
1,注释
单行注释使用#,多行注释使用三引号。
2,输入与输出
输入:使用input("str")方法,str作为输入的提示语句。
注意:使用input()方法输入的类型是字符串,要作为数字使用,需要使用int()方法:int(input())。
输出:print("str",end=' '):输出后不换行。要在语句中输出变量,有以下三种方法:
①格式化语句:print(f"{variable1}string{variable2}")
②.format()语句:print("{}string{}".format(variable1,variable2))
③print("%dstring%s"%(int_variable,str_variable))
3,处理数据的一些基本函数和操作
①join函数:'sep'.join(seq)。以sep作为分隔符,将seq中的所有元素合并成一个新的字符串。
②split函数:object.split(sep,max)。以sep作为分隔符,将obj切割max次,以列表形式返回结果。
扩展:rsplit()方法:从右边开始切割;splitlines()方法:按行切割。
③strip函数:str.strip(char)。删除字符串头尾的char字符。
扩展:lstrip()/rstrip()方法:指定删除字符串左边/右边的char字符。
④len函数:len(object)。返回对象中的元素个数,当对象是字符串时,返回的是字符数。
⑤find函数:str.find(elem,start)。在str中寻找elem,返回下标。start是开始寻找的位置。
⑥replace函数:str.replace(old,new)。替换old字符为new字符。
⑦切片:object[start:stop:step]。切片范围是[start,stop),省略start时表示从最左端开始,省略stop时表示到最右端结束。start和stop大小不合法时输出为空。step是步进值,省略时是1。
补充:range(start,stop) == [start,stop),range(x) == [0,x)。