码迷,mamicode.com
首页 > 编程语言 > 详细

Learning Python

时间:2016-03-04 10:31:44      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/Citizen/p/5241072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!