- 博客(3)
- 收藏
- 关注
原创 Python print()函数的sep参数和end参数 time()函数
输出函数的end参数 取消输出函数的换行例:print('帅哥')print(333+333)运行后 帅哥 666运用end参数print('帅哥',end='+')print(333+333)运行后 帅哥+666sep参数 替代多段字符输出时的空格例:print('真是','帅哥',sep='+')运行后 真是+帅哥sep参数和end参数一起使用例:print('真是','帅哥',sep='+',end='-'...
2022-01-25 13:39:40 898
原创 python字符串的拼接
方法%s .join .firmat (+)1. %s 例:str1='2022'str2='1'str3='24''%s年%s月%s日'%(str1,str2,str3)运行后 '2022年1月24日'2. .join 例:'-'.join([str1,str2,str3])运行后 '2022-1-24''.'.join([str1,str2,str3])运行后 '2022.1.24'3. .format 例:'{}年{}月{}日'.format(s
2022-01-24 15:58:24 1085
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人