给定起点和终点, 编写Python程序以打印该给定范围内的所有偶数。
例子:
Input: start = 4, end = 15Output: 4, 6, 8, 10, 12, 14Input: start = 8, end = 11Output: 8, 10
范例1:使用for循环打印给定列表中的所有偶数
定义范围的开始和结束限制。使用for循环从头开始迭代直到列表中的范围, 并检查num%2 ==0。如果条件满足, 则仅打印数字。
# Python program to print Even Numbers in given rangestart, end = 4 , 19# iterating each number in list
for num in range (start, end + 1 ):# checking condition
if num % 2 = = 0 :
print (num, end = " " )
输出如下:
4 6 8 10 12 14 16 18
范例2:
从用户输入获取范围限制
# Python program to print Even Numbers in given rangestart = int ( input ( "Enter the start of range: " ))
end = int ( input ( "Enter the end of range: " ))# iterating each number in list
for num in range (start, end + 1 ):# checking condition
if num % 2 = = 0 :
print (num, end = " " )
输出如下:
Enter the start of range: 4Enter the end of range: 104 6 8 10
注意怪胎!巩固你的基础Python编程基础课程和学习基础知识。
【Python程序如何实现打印范围内的所有偶数()】首先, 你的面试准备可通过以下方式增强你的数据结构概念:Python DS课程。
推荐阅读
- JavaScript如何使用rest参数(代码示例)
- 如何理解JavaScript中的变量作用域()
- 如何使用Java中的List接口(代码实例)
- Python如何使用列表中的备用范围切片()
- C语言中的scanset是什么(如何使用?)
- 算法设计(如何理解和实现关键字密码())
- 算法(如何打印字符串的所有子序列())
- PHP IntlChar charFromName()函数如何使用(示例)
- C++中的析构函数可以私有吗(私有析构函数如何使用?)