python
蔓莉男孩
这个作者很懒,什么都没留下…
展开
-
python学习日记(二)
题库2 P1422 print("%.3f"%c)强制输出c为3位小数 P1085 本题是一个for循环使用,有一种顺序排序法的感觉。 t = 0 a = 0 for i in range(1,8): x,y = map(int,input().split()) h_index = x + y if h_index > t: t = h_index ...原创 2020-01-15 17:12:39 · 115 阅读 · 0 评论 -
python学习日记(一)
python学习日记(一)@PYTHON 落谷P1000 开始刷落谷,使用python。 这道题是对引号的一种使用。 三引号 三引号之间的字符串可以跨行,可以不需要打\n就可以换行,但是单引号就不可以。 三引号之间可以复制粘贴一些复杂的字符串,跨行等等,但是单引号就不可以。 具体参考pycharm中的代码。 print(''' ******** ...原创 2020-01-04 16:42:25 · 118 阅读 · 0 评论