python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习:第2项

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习:第2项相关的知识,希望对你有一定的参考价值。

#!/usr/bin/python3

print("Hello!")
for num in range(10, 0, -2):  # loop statement
    print('num =', num)

'''
MITx 600.1x | Week 1 | Python Basics | 2. Core Elements of Programs | Exercise for: Item 2

Hello!
num = 10
num = 8
num = 6
num = 4
num = 2

range(10, 0, -2) means:
1. 10 items in range.
2. 0 is start of range (0-10).
3. step through range by -2 (backwards).
'''

以上是关于python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习:第2项的主要内容,如果未能解决你的问题,请参考以下文章

python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5a

python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5b

python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5c

python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5d

python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5e

python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习6c