Learning Python
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Learning Python相关的知识,希望对你有一定的参考价值。
P5.
>>> import sys
>>> sys.version
‘2.7.6 (default, Jun 22 2015, 17:58:13) \n[GCC 4.8.2]‘
>>> def f(a,b=1,c=2):
print a,b,c
>>> apply(f,(1,),{‘b‘:1,‘c‘:2})
1 1 2
>>> a=1
>>> `a`
‘1‘
>>> repr(a)
‘1‘
>>> 1<>2
True
>>> 1!=2
True
>>> d=dict([(‘a‘,1),])
>>> d.has_key(‘a‘)
True
>>> ‘a‘ in d
True
>>> xrange(10)
xrange(10)
>>> file
<type ‘file‘>
>>> #execfile(name)
>>> #exec(open(file).read())
>>> #exec open(file).read()
>>>>>> import sys
>>> print>>sys.stdout,‘hello‘
hello
>>>
以上是关于Learning Python的主要内容,如果未能解决你的问题,请参考以下文章
Python 基础 - Day 5 Learning Note - 模块 之 介绍篇