<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fresker小站 &#187; 其他学习知识</title>
	<atom:link href="http://www.fresker.com/old2/archives/tag/%e5%85%b6%e4%bb%96%e5%ad%a6%e4%b9%a0%e7%9f%a5%e8%af%86/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fresker.com/old2</link>
	<description>天将降大任于斯人也，必先苦其心志，劳其筋骨，饿其体肤，空乏其身....</description>
	<lastBuildDate>Sat, 05 May 2018 04:20:42 +0000</lastBuildDate>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>python求素数</title>
		<link>http://www.fresker.com/old2/archives/503</link>
		<comments>http://www.fresker.com/old2/archives/503#comments</comments>
		<pubDate>Wed, 27 Jun 2012 01:29:54 +0000</pubDate>
		<dc:creator>Duke</dc:creator>
				<category><![CDATA[python]]></category>
		<category><![CDATA[开发技术类]]></category>
		<category><![CDATA[技术杂谈]]></category>
		<category><![CDATA[教程类]]></category>
		<category><![CDATA[其他学习知识]]></category>

		<guid isPermaLink="false">http://www.fresker.com/?p=503</guid>
		<description><![CDATA[python中求素数（质数）的方法： 基本方法： 方法1： [x for x in range(1,a) if not [y for y in range(2,int(x/2)+1) if x%y==0]] 改进方法： 方法2： [x for x in range(1,a) if not [y for y in range(2,round(x**0.5)+1) if x%y==0]] 方法3： [x for x in range(1,a) if not [y for y in range(2,round(math.sqrt(x))+1) if x%y==0]] 方法2最高效，方法3调用math模块，降低了效率，大家有更好的方法，请留言大家讨论]]></description>
		<wfw:commentRss>http://www.fresker.com/old2/archives/503/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Dirve安装问题解决</title>
		<link>http://www.fresker.com/old2/archives/490</link>
		<comments>http://www.fresker.com/old2/archives/490#comments</comments>
		<pubDate>Thu, 26 Apr 2012 09:50:12 +0000</pubDate>
		<dc:creator>Duke</dc:creator>
				<category><![CDATA[乱七八糟]]></category>
		<category><![CDATA[技术杂谈]]></category>
		<category><![CDATA[电脑知识]]></category>
		<category><![CDATA[其他学习知识]]></category>
		<category><![CDATA[其他工具]]></category>

		<guid isPermaLink="false">http://www.fresker.com/archives/490</guid>
		<description><![CDATA[刚申请开通了google drive，5G空间，感觉还不错 不过在使用的时候遇到点小问题 安装提示安装，下载了googledrivesync.exe之后点击安装，老是出现连接错误，download failed 那个纠结啊，后来网上搜刮了一下，找到个解决方法 可能需要修改hosts文件 https://smarthosts.googlecode.com/svn/trunk/hosts 添加上页面中的部分，再重新试下载安装，ok 通过 Wiz 发布]]></description>
		<wfw:commentRss>http://www.fresker.com/old2/archives/490/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->