
python
ros_tyler
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
用python的for循环,打印九九乘法表
用python的for循环,打印九九乘法表Python:#! /usr/bin/env python# -*- coding:utf-8 -*-for row in range(1, 10): for col in range(1,row + 1): print("%d * %d = %d" % (col, row,...原创 2020-04-30 13:53:12 · 910 阅读 · 0 评论 -
用python的while循环,打印九九乘法表
用python的while循环,打印九九乘法表 自学习编程以来,有的时候,当时觉得会,但过一段时间,就忘了,现在想把一些学过的知识点,做个笔记,给自己一个知识的积累和日后的查询。Python的while循环:#!/usr/bin/envpython#-*-coding:utf-8-*-row=1whilerow<...原创 2020-04-30 13:49:21 · 1024 阅读 · 1 评论