<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://itecfun.com/extern.php?action=feed&amp;tid=3142&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[个人知识管理站 / Python相关教程]]></title>
		<link>http://www.itecfun.com/viewtopic.php?id=3142</link>
		<description><![CDATA[Python相关教程 最近发表的帖子。]]></description>
		<lastBuildDate>Wed, 27 May 2015 00:50:12 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Python相关教程]]></title>
			<link>http://www.itecfun.com/viewtopic.php?pid=3285#p3285</link>
			<description><![CDATA[<p><a href="http://www.ibm.com/developerworks/cn/linux/l-pyint/" rel="nofollow">Python 自省指南</a></p>]]></description>
			<author><![CDATA[dummy@example.com (xuyg)]]></author>
			<pubDate>Wed, 27 May 2015 00:50:12 +0000</pubDate>
			<guid>http://www.itecfun.com/viewtopic.php?pid=3285#p3285</guid>
		</item>
		<item>
			<title><![CDATA[Re: Python相关教程]]></title>
			<link>http://www.itecfun.com/viewtopic.php?pid=3283#p3283</link>
			<description><![CDATA[<p>os.path模块的主要函数：<br />abspath(path)：获得一个路径的绝对路径<br />basename(path)：获取路径的最后一部分<br />commonprefix(path_list)：获取多个路径的公共前缀。输入为路径集合。例如：<br />&#160; &#160; &#160; os.path.commonprefix([&#039;d:/abc/edf&#039;,&#039;d:/abc/123.txt&#039;,&#039;d:/abc/edf/abc&#039;])<br />&#160; &#160; &#160; 结果：&#039;d:/abc/&#039;<br />dirname(pathname)：获取一个路径的目录名<br />exists(path)：判断指定路径是否存在<br />expanduser(&#039;~&#039;)：获取操作系统的用户目录<br />expandvars(environment_name)：获取操作系统的环境变量值。environment_name为环境变量名称。如该环境变量不存在，则返回其名称。例如获取path:os.path.expandvars(&#039;$PATH&#039;)<br />getatime(filename)：获取指定文件最近一次被访问的时间。<br />getctime(filename)：获取指定文件的元数据最近一次被修改的时间<br />getmtime(filename)：获取指定文件最近一次被修改的时间<br />getsize(filename)：获取指定文件的大小，单位是字节<br />isabs(path)：判断一个路径是否为绝对路径<br />isdir(path)：判断指定目录是否存在<br />isfile(path)：判断一个路径是否为合法的文件<br />islink(path)：判断一个路径是否为一个连接，在windows下总是返回false<br />ismount(path)：判断一个路径是否为挂载点，即：磁盘驱动根路径<br />join(a,*p)：将多个路径连为一个路径，必要时插入‘/’。如果路径中有多个绝对路径，则去掉前面部分，只留下最后一部分。</p>]]></description>
			<author><![CDATA[dummy@example.com (xuyg)]]></author>
			<pubDate>Tue, 26 May 2015 06:25:03 +0000</pubDate>
			<guid>http://www.itecfun.com/viewtopic.php?pid=3283#p3283</guid>
		</item>
		<item>
			<title><![CDATA[Re: Python相关教程]]></title>
			<link>http://www.itecfun.com/viewtopic.php?pid=3282#p3282</link>
			<description><![CDATA[<p>这篇对初学者也不错，源自博客园中某位哥们，名字有点怪怪的<br /><a href="http://www.cnblogs.com/xuanye/archive/2010/02/25/1673682.html" rel="nofollow">Python 学习笔记(半ZZ半自己写)</a></p><p>这篇是博客园中一哥们写的，有一个小系列，还不错，对于初学者比较好，搜集下<br /><a href="http://www.cnblogs.com/yanxy/archive/2010/02/22/ILovePython.html" rel="nofollow">从C#到Python</a></p>]]></description>
			<author><![CDATA[dummy@example.com (xuyg)]]></author>
			<pubDate>Tue, 26 May 2015 06:24:56 +0000</pubDate>
			<guid>http://www.itecfun.com/viewtopic.php?pid=3282#p3282</guid>
		</item>
		<item>
			<title><![CDATA[Re: Python相关教程]]></title>
			<link>http://www.itecfun.com/viewtopic.php?pid=3281#p3281</link>
			<description><![CDATA[<p><a href="http://blog.csdn.net/JGood/article/category/554799/1" rel="nofollow">某CSDN的博客，还不错</a></p>]]></description>
			<author><![CDATA[dummy@example.com (xuyg)]]></author>
			<pubDate>Thu, 21 May 2015 07:54:07 +0000</pubDate>
			<guid>http://www.itecfun.com/viewtopic.php?pid=3281#p3281</guid>
		</item>
		<item>
			<title><![CDATA[Re: Python相关教程]]></title>
			<link>http://www.itecfun.com/viewtopic.php?pid=3280#p3280</link>
			<description><![CDATA[<p><a href="http://www.pythoner.cn/" rel="nofollow">Python学习网站</a><br /><a href="http://woodpecker.org.cn/abyteofpython_cn/chinese/" rel="nofollow">Python 简明教程</a><br /><a href="http://djangobook.py3k.cn/2.0/" rel="nofollow">Djangobook </a><br /><a href="https://docs.python.org/2/library/index.html" rel="nofollow">Python Standard Library</a><br /><a href="http://www.cnblogs.com/fnng/p/3699893.html" rel="nofollow">Python 函数式编程</a><br /><a href="http://www.cnblogs.com/fnng/p/3670789.html" rel="nofollow">Python 多线程</a><br /><a href="http://www.cnblogs.com/fnng/p/3691053.html" rel="nofollow">Python 多线程续</a></p>]]></description>
			<author><![CDATA[dummy@example.com (xuyg)]]></author>
			<pubDate>Thu, 21 May 2015 07:53:10 +0000</pubDate>
			<guid>http://www.itecfun.com/viewtopic.php?pid=3280#p3280</guid>
		</item>
		<item>
			<title><![CDATA[Python相关教程]]></title>
			<link>http://www.itecfun.com/viewtopic.php?pid=3277#p3277</link>
			<description><![CDATA[<p><a href="http://woodpecker.org.cn/abyteofpython_cn/chinese/" rel="nofollow">简明 Python 教程</a></p>]]></description>
			<author><![CDATA[dummy@example.com (xuyg)]]></author>
			<pubDate>Thu, 21 May 2015 07:46:06 +0000</pubDate>
			<guid>http://www.itecfun.com/viewtopic.php?pid=3277#p3277</guid>
		</item>
	</channel>
</rss>
