• python: 输出 1~100 之间不能被 7 整除的数,每行输出 10 个数字,要求应用字符串格式化方法美化输出格式。


    #输出 1~100 之间不能被 7 整除的数

    j = 0    # 定义 计数变量为 j,初始值为1
    for i in range(1,101):    # 遍历1-100取值,定义为变量 i 
        if i%7 != 0:     # 找出不能被 7 整除的数
            print("{:3d}".format(i),end=' ')    # Format格式化输出

            #格式二:print("{:>3}".format(i),end=' ')

            #格式三:#print("%3s"%(i).format(i),end=' ')
            j += 1      # 对输出的 不能被 7 整除的数 进行计数
            if j%10 == 0:    # 控制每行输出数字保持10个
                print(' ')   # 每行输出数字到第11个,进行换行操作

    输出结果:

       1   2    3    4    5    6    8    9   10  11

     12  13  15  16  17  18  19  20  22  23

     24  25  26  27  29  30  31  32  33  34

     36  37  38  39  40  41  43  44  45  46

     47  48  50  51  52  53  54  55  57  58

     59  60  61  62  64  65  66  67  68  69

     71  72  73  74  75  76  78  79  80  81

     82  83  85  86  87  88  89  90  92  93

     94  95  96  97  99 100

  • 相关阅读:
    CHOCBase
    iOS 12中无法获取WiFi的SSID了?
    如何打开Assets.car文件
    博客园美化资源网站链接
    xcode工程配置绝对路径与相对路径
    UIControl事件
    UIButton属性
    UIAlertView
    UIActivityIndicatorView
    NSAttributedString
  • 原文地址:https://www.cnblogs.com/road-5/p/10087692.html
Copyright © 2020-2023  润新知