蓝绝

博客园 首页 新随笔 联系 订阅 管理

2022年9月5日 #

摘要: def calc(a,b): #a,b 是形参,在函数定义处 c=a+b return c result = calc(10,20) #按位置传递参数 #10,20 为实参,在函数调用处 print(result) res = calc(b=20,a=10) #根据形参名称进行实参传递 print( 阅读全文
posted @ 2022-09-05 15:51 蓝绝 阅读(12) 评论(0) 推荐(0) 编辑

摘要: def calc(a,b): c=a+b return c result = calc(10,20) print(result) E:\PycharmProjects\pythonProject\venv\Scripts\python.exe E:/PycharmProjects/pythonPro 阅读全文
posted @ 2022-09-05 15:36 蓝绝 阅读(21) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2022-09-05 15:08 蓝绝 阅读(10) 评论(0) 推荐(0) 编辑

摘要: s='天涯共此时' '编码' print(s.encode(encoding='GBK')) #在GBK这种编码格式中一个中文占2个字节 print(s.encode(encoding='UTF-8')) #在UTF-8这种编码格式中一个中文占3个字节 '解码' #byte代表就是一个二进制数据(字 阅读全文
posted @ 2022-09-05 15:04 蓝绝 阅读(24) 评论(0) 推荐(0) 编辑

2022年9月4日 #

摘要: #字符串格式化参考网站: https://www.jb51.net/article/259462.htm name='张三' age=20 '''百分号做占位符''' print('我叫%s,今年%d岁'%(name,age)) print('%-10.3f' % 3.1415926) #.3f 表 阅读全文
posted @ 2022-09-04 18:08 蓝绝 阅读(16) 评论(0) 推荐(0) 编辑

摘要: '''字符串的切片操作 切片[start:end:step] ''' s='hello,Python' s1=s[:5] #没有写起始点默认从0开始到5(不包括5) s2=s[6:] #没写终止点默认到最后一位元素 s3='!' newstr=s1+s3+s2 print(s1,s2,newstr) 阅读全文
posted @ 2022-09-04 17:08 蓝绝 阅读(43) 评论(0) 推荐(0) 编辑

摘要: '''字符串的比较''' print('apple'>'app') #True print('apple'>'banana') #False print(ord('a'),ord('b')) #97 98 #字符串比较的是 ordinal value print(ord('杨')) #26472 p 阅读全文
posted @ 2022-09-04 16:38 蓝绝 阅读(25) 评论(0) 推荐(0) 编辑

摘要: s='hello,Python,Python,Python' print('用字符串替换其中字符串,替换2次',s.replace('Python','java',2)) lst=['hello','java','Python'] #可以是列表或者元组 print('用空格连接列表全部元素',''. 阅读全文
posted @ 2022-09-04 12:10 蓝绝 阅读(20) 评论(0) 推荐(0) 编辑

摘要: '''字符串的判断,注意:中文属于字母 numeric :数 (字,值) alpha :阿尔法; 希腊字母表的第1个字母; decimal :十进制的; 小数的; 十进位的; identifier :标识符 alnum :代表的是[:alpha:]和[:digit:],即字母和数字 ''' prin 阅读全文
posted @ 2022-09-04 11:48 蓝绝 阅读(83) 评论(0) 推荐(0) 编辑

摘要: s='hello world python' s1='hello|world|python' '''字符串的劈分,输出结果都为为列表''' lst=s.split() #split中文翻译为分开 print('字符串的劈分,默认分开符号为空格,',lst) lst2=s1.split(sep='|' 阅读全文
posted @ 2022-09-04 11:04 蓝绝 阅读(22) 评论(0) 推荐(0) 编辑