首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

Python学习札记(一)

2013-03-01 
Python学习笔记(一)?????? python核心编程(第二版)的代码示例已经不支持python 3.0以上版本,学习都是边学

Python学习笔记(一)

?????? python核心编程(第二版)的代码示例已经不支持python 3.0以上版本,学习都是边学边记录,所以决定重新学习python的同时,也决定将学习笔记记录下来,一方面是方便他人参考,最重要的就是给自己加深印象。

????? 一、程序输出

?????? 1、print输出

??????????? python 2.7:??????????

??????????

>>> print 'hello'

?

?

?????????? python 3.3:

?

>>> print('hello')hello

?

?

?

?????? 2、print重定向

?

??????????? python 2.7:

?????

>>> import sys>>> logfile = open('G:\\1.txt','a')>>> print >> logfile,'hello'

?

?

?????????? python 3.3:

?

?

>>> import sys>>> logfile = open('G:\\1.txt','a')>>> print('hello',file = logfile)>>> logfile.close()

?

?

?二、程序输入(内建函数)

?

??????? python 2.7:

???????

>>> user = raw_input('Enter your num: ')

?

?

?????? python 3.3:

?

?

>>> user = input('Enter your num: ')Enter your num: 23>>> print('the num is %d' % (int(user) * 2))the num is 46

?

?

?

?

热点排行