python做题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python做题相关的知识,希望对你有一定的参考价值。
Python题目
1.打印一个九九乘法表
#!/usr/bin/env python # -*- coding: utf-8 -*- """ __author__ = ‘YeXiaodong‘ __QQ__= ‘12519460‘ __Email__ = ‘[email protected]‘ """ x = 1 list_table = [] print(‘九九乘法表‘.center(100,‘ ‘)) while x < 10: list_table.append(x) for i in list_table: res = ‘{0} x {1} = {2:<2}‘.format(x,i,x*i) print(res,end=‘ ‘) print(‘‘) x += 1
效果如下:
以上是关于python做题的主要内容,如果未能解决你的问题,请参考以下文章