- 博客(5)
- 资源 (6)
- 收藏
- 关注
原创 关于python中end函数的使用
关于Python3中 end函数的使用 print('hello bosco')print('hello jasmine')>>>hello boscohello jasmineprint('hello bosco',end=' ')print('hello jasmine')>>>hello bosco hello ja...
2018-11-05 15:14:00
22218
4
转载 Python 99乘法表
#99乘法表长方形for i in range(1,10): for j in range(1,10): print('%d*%d=%d'%(i,j,i*j),end='\t') print('') #左上三角形for i in range(1,10): for j in range(i,1...
2018-11-05 14:58:43
378
转载 ubuntu screenshot 截图工具
之前用的deepin-scrot 在18.04版本一直无效,因此换用flameshot 感觉还可以,推荐给大家安装flameshot:https://github.com/lupoDharkael/flameshot安装命令:sudo apt-get install flameshot设置>设备>键盘,设置一个自定义快捷键(拉到最下面)命令填写:flameshot gui...
2018-11-02 00:16:31
537
原创 Python 1st while iteration test
Python学习第一天 while循环练习题#coding:utf-8aList = ['ada','sam','hoda']for i in aList: print('hello %s'%i)n = 2while n == 1: print(123)print(456)#视同while循环循环输出 1,2,3,4,5,6, 8,9,10n = 1w...
2018-11-01 14:25:06
241
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人