>>> def is_not_empty(s):
return s and len(s.strip()) > 0

>>> filter(is_not_empty, ['test', None, '', 'str', ' ', 'END'])
<filter object at 0x1056a3518>
>>> chr(0x1056a3518)
Traceback (most recent call last):
File "<pyshell#113>", line 1, in <module>
chr(0x1056a3518)
OverflowError: signed integer is greater than maximum
>>> hex(9)
'0x9'
>>> hex(226)
'0xe2'
>>> help(hex)
Help on built-in function hex in module builtins:

hex(number, /)
Return the hexadecimal representation of an integer.

>>> hex(12648430)
'0xc0ffee'

>>> input('please input keyword,thank you')
please input keyword,thank you02
'02'
>>> list([1,2,3])
[1, 2, 3]
>>> set([1.1,2,3])
{1.1, 2, 3}
>>> tuple([1,'str',5.0])
(1, 'str', 5.0)
>>> dict([2:1.2,5:3.2])
SyntaxError: invalid syntax
>>> dict([2:'name',3:'stress'])\

SyntaxError: invalid syntax
>>> dict([2 : 'name',3 : 'stress'])
SyntaxError: invalid syntax
>>> dict(a='a',b='b',t='t')
{'b': 'b', 't': 't', 'a': 'a'}
>>> a = set([(1,2)])
>>> dict(a)
{1: 2}
>>> a = [(1,'a'),['a',1]]
>>> dict(a)
{1: 'a', 'a': 1}
>>> a = ('ac',set('de'))
>>> dict(a)
{'e': 'd', 'a': 'c'}
>>> def f(x)
SyntaxError: invalid syntax
>>> def f(x):
return x*x

>>> print map(f,[1,2,3,4,5,6,7,8,8])
SyntaxError: invalid syntax
>>> max([2,4,6,8,9])
9
>>> min([1,0.5,8,6])
0.5
>>> a = iter('abcd')
>>> next(a)
'a'
>>> next(a)
'b'
>>> next(a)
'c'
>>> next(a)
'd'
>>> next(a,'e')
'e'
>>> sum([1,5,8,9])
23
>>> oct(138)
'0o212'
>>> ord('a')
97
>>> pow(2,3)
8
>>> range(1,3)
range(1, 3)
>>> range(1,5,2)
range(1, 5, 2)
>>> range(5)#not include five
range(0, 5)
>>> reversed
<class 'reversed'>
>>> reversed([1,2,3,4,5,6,7])
<list_reverseiterator object at 0x105686f60>
>>> round(1.5778,2)
1.58
>>> str(5648+)
SyntaxError: invalid syntax
>>> str(546)
'546'
>>> str(545.)
'545.0'
>>> type(str)
<class 'type'>
>>> type(132)
<class 'int'>
>>> x = [1,2,3]
>>> y = [4,5,6]
>>> z = [7,8,9]
>>> xyz = zip(x,y,z)
>>> print xyz
SyntaxError: Missing parentheses in call to 'print'
>>> print (xyz)
<zip object at 0x1056a8f08>
>>> import (sys.builtin_module_names)
SyntaxError: invalid syntax
>>> import sys
>>> print(sys.builtin_module_names)
('_ast', '_codecs', '_collections', '_functools', '_imp', '_io', '_locale', '_operator', '_signal', '_sre', '_stat', '_string', '_symtable', '_thread', '_tracemalloc', '_warnings', '_weakref', 'atexit', 'builtins', 'errno', 'faulthandler', 'gc', 'itertools', 'marshal', 'posix', 'pwd', 'sys', 'time', 'xxsubtype', 'zipimport')
>>> help('module')
No Python documentation found for 'module'.
Use help() to get the interactive help utility.
Use help(str) for help on the str class.

>>> help(_ast)
Traceback (most recent call last):
File "<pyshell#169>", line 1, in <module>
help(_ast)
NameError: name '_ast' is not defined
>>> help('_ast')

python_code list_1的更多相关文章

  1. python_code list_3

    >>> seq=['foo','x41','?','***']>>> def func(x): return x.isalnum() >>> li ...

  2. python_code list_2

    >>> import math>>> math.sin(0.5)0.479425538604203>>> >>> import ...

  3. python 数据类型 --- 集合

    1. 注意列表和集合的区别 set 列表表现形式: list_1 = [1,3,4];  集合表现形式:set_1= set() list_1 = [1,2,3,4,23,4,2] print(lis ...

  4. Basic Tutorials of Redis(6) - List

    Redis's List is different from C#'s List,but similar with C#'s LinkedList.Sometimes I confuse with t ...

  5. python基础之函数

    python 函数 函数是组织好的,可重复使用的,用来实现单一,或相关联功能的代码段. 函数能提高应用的模块性,和代码的重复利用率.你已经知道Python提供了许多内建函数,比如print().但你也 ...

  6. Python 数据类型及其用法

    本文总结一下Python中用到的各种数据类型,以及如何使用可以使得我们的代码变得简洁. 基本结构 我们首先要看的是几乎任何语言都具有的数据类型,包括字符串.整型.浮点型以及布尔类型.这些基本数据类型组 ...

  7. Python-09-线程、进程、协程、异步IO

    0. 什么是线程(thread)? 线程,有时被称为轻量级进程(Lightweight Process,LWP),是程序执行流的最小单元.一个标准的线程由线程ID,当前指令指针(PC),寄存器集合和堆 ...

  8. Python-03-基础

    一.集合 集合(set)是一个无序的.不重复的元素组合,它的主要作用如下: 去重:把一个列表变成集合,就会自动去重. 关系测试:测试两组数据之前的交集.差集.并集等关系. 常用操作 # 创建数值集合 ...

  9. Python学习Day2笔记(集合和文件操作)

    1.集合的使用 列表是有序的可包含重复内容的 集合是无序的不可包含重复内容的 1) 集合关系测试 #列表去重list_1=[1,4,5,6,7,8,9,7,5,4,23,2] #有重复数据 list_ ...

随机推荐

  1. 【linux】mkfifo 命令创建命名管道实现进程之间通信

    mkfifo 命令 mkfifo命令创建一个FIFO特殊文件,是一个命名管道(可以用来做进程之间通信的桥梁) 管道也是一种文件,一般是linux中的一个页大小,4k,管道数据一旦被读取就没了.(管道大 ...

  2. Leetcode_101_Symmetric Tree

    本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/42087039 Given a binary tree, c ...

  3. 自己动手写web框架----1

    本文可作为<<自己动手写struts–构建基于MVC的Web开发框架>>一书的读书笔记. 一个符合Model 2规范的web框架的架构图应该如下: Controller层的Se ...

  4. STL - set和multiset

    set/multiset的简介 set是一个集合容器,其中所包含的元素是唯一的,集合中的元素按一定的顺序排列.元素插入过程是按排序规则插入,所以不能指定插入位置. set采用红黑树变体的数据结构实现, ...

  5. R12.2. Start and Stop Procedure

    R12.2. Start and Stop Procedure   Leave a comment Individual Components:  Application(Middle Tier) $ ...

  6. Ubuntu14.04安装Matlab2013a

    source url: http://blog.sina.com.cn/s/blog_ec5021d60102v3ky.html 1. 为方便操作,把Matlab镜像文件(iso)重命名为'Matla ...

  7. Oracle统一访问代理层方案

    目标 提供一个oracle数据库统一访问代理层,统一管理所有oracle数据库用户名的连接池,让多个应用系统相同的数据库用户公用连接池以节省oracle服务器的总连接数,并且提供统一管理oracle能 ...

  8. Linux - 延伸正则表达式

    RE 字符 意义与范例 + 意义:重复『一个或一个以上』的前一个 RE 字符 范例:搜寻 (god) (good) (goood)... 等等的字串. 那个 o+ 代表『一个以上的 o 』所以,底下的 ...

  9. 未能加载文件或程序集“file:///C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0

    未能加载文件或程序集"file:///C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framewor ...

  10. Lease问题

    经过查明原来是lease引发的问题.不过查问题的过程让我们耽误了很多修复故障的时间,很是不爽. 起因:datanode和regionserver以及master同时挂掉 现象:datanode重启后, ...