博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python打印奇数_Python | 删除奇数后打印列表
阅读量:2528 次
发布时间:2019-05-11

本文共 1043 字,大约阅读时间需要 3 分钟。

python打印奇数

Given a list, and we have to print the list after removing the ODD numbers in Python.

给定一个列表,我们必须在Python中删除ODD数字后打印该列表。

Example:

例:

Input:    list = [11, 22, 33, 44, 55]    Output:    list after removing ODD numbers    list = [22, 44]

Logic:

逻辑:

  • Traverse each number in the list by using loop.

    使用循环遍历列表中的每个数字。

  • Check the condition i.e. checks number is divisible by 2 or not – to check ODD, number must not be divisible by 2.

    检查条件,即检查数字是否可以被2整除–要检查ODD,数字不得被2整除。

  • If number is not divisible by 2 i.e. ODD number from the list, use .

    如果数字不能被2整除,即列表中的奇数,请使用 。

Program:

程序:

# list with EVEN and ODD numberlist = [11, 22, 33, 44, 55]# print original listprint "Original list:"print list# loop to traverse each element in the list# and, remove elements# which are ODD (not divisible by 2)for i  in list:	if(i%2 != 0):	    list.remove(i)# print list after removing ODD elementsprint "list after removing ODD numbers:"print list

Output

输出量

Original list:    [11, 22, 33, 44, 55]    list after removing ODD numbers:    [22, 44]

翻译自:

python打印奇数

转载地址:http://jvvzd.baihongyu.com/

你可能感兴趣的文章
点云PCL中小细节
查看>>
铁路信号基础
查看>>
RobotFramework自动化2-自定义关键字
查看>>
[置顶] 【cocos2d-x入门实战】微信飞机大战之三:飞机要起飞了
查看>>
BABOK - 需求分析(Requirements Analysis)概述
查看>>
第43条:掌握GCD及操作队列的使用时机
查看>>
Windows autoKeras的下载与安装连接
查看>>
CMU Bomblab 答案
查看>>
微信支付之异步通知签名错误
查看>>
2016 - 1 -17 GCD学习总结
查看>>
linux安装php-redis扩展(转)
查看>>
Vue集成微信开发趟坑:公众号以及JSSDK相关
查看>>
技术分析淘宝的超卖宝贝
查看>>
i++和++1
查看>>
react.js
查看>>
P1313 计算系数
查看>>
NSString的长度比较方法(一)
查看>>
Azure云服务托管恶意软件
查看>>
My安卓知识6--关于把项目从androidstudio工程转成eclipse工程并导成jar包
查看>>
旧的起点(开园说明)
查看>>