python

当前位置:中华考试网 >> python >> python编程基础 >> 文章内容

利用python打印从1到最大的n位数

来源:中华考试网  [2020年10月9日]  【

  输入数字 n,按顺序打印出从 1 到最大的 n 位十进制数。比如输入 3,则打印出 1、2、3 一直到最大的 3 位数 999。

  示例 1:

  输入: n = 1

  输出: [1,2,3,4,5,6,7,8,9]

  说明:

  用返回一个整数列表来代替打印

  n 为正整数

  2、C++

  class Solution { /* 2020-9-19 DuYong */

  public:

  vector printNumbers(int n) {

  vector result;

  if (n){

  for (int i = 1, max = pow(10, n); i < max; i++){

  result.push_back(i);

  }

  }

  return result;

  }

  };

  3、python

  class Solution: # 2020-9-19 DuYong

  def printNumbers(self, n: int) -> List[int]:

  result = []

  if n:

  for i in range(1, pow(10, n)):

  result.append(i)

  return result

责编:hym
  • 会计考试
  • 建筑工程
  • 职业资格
  • 医药考试
  • 外语考试
  • 学历考试