head first python菜鸟学习笔记(第三章)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了head first python菜鸟学习笔记(第三章)相关的知识,希望对你有一定的参考价值。
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菜鸟学习笔记(第三章)的主要内容,如果未能解决你的问题,请参考以下文章
Head First Python(如何向PYPI发布你的代码)学习笔记