会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
小阳儿儿
博客园
首页
新随笔
联系
订阅
管理
公告
2019年1月9日
python之99乘法表
摘要: #99乘法表 fir=1 while fir<=9: sec=1 while sec<=fir: print(str(fir)+'*'+str(sec)+'='+str(fir*sec)) sec+=1 print() #换行 fir+=1#效果如图
阅读全文
posted @ 2019-01-09 11:52 小阳儿儿
阅读(149)
评论(0)
推荐(0)
编辑
字符串重要方法复习
摘要: st='hello world'print(st.count('l'))#统计元素个数:3print(st.capitalize())#首字母大写:Hello worldprint(st.center(50,'-'))#把字符串居中,50个字符除了字符串,剩下的用 # hello world pri
阅读全文
posted @ 2019-01-09 11:23 小阳儿儿
阅读(241)
评论(0)
推荐(0)
编辑