小阳儿儿

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) 编辑