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

head first python菜鸟学习笔记(第三章)

时间:2017-08-31 21:04:07      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:images   get   code   int   学习   技术分享   port   img   菜鸟   

1.os.chdir()切换到指定目录下,os.getcwd(),得到当前目录。

>>> import os
>>> os.chdir(‘D:\\CodeDocuments\\python code\\python head first code\\03chapter3‘)
>>> os.getcwd()
‘D:\\CodeDocuments\\python code\\python head first code\\03chapter3‘

2.print(,end=‘‘)加end=‘‘,则打印时不换行,若不加,则会换行。

>>> data=open(‘sketch.txt‘)
>>> print(data.readline(),end=‘‘)
Man: Is this the right room for an argument?
>>> print(data.readline())
Other Man: I‘ve told you once.

>>> print(data.readline())
Man: No you haven‘t!

>>> print(data.readline(),end=‘‘)
Other Man: Yes I have.

技术分享技术分享

 

 

3.

head first python菜鸟学习笔记(第三章)

标签:images   get   code   int   学习   技术分享   port   img   菜鸟   

原文地址:http://www.cnblogs.com/hebulingding/p/7460352.html

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