<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>Worth Living &#187; 制御・繰り返し（ループ）と条件分岐</title>
	<atom:link href="https://worthliv.com/category/python/python-loop/feed" rel="self" type="application/rss+xml" />
	<link>https://worthliv.com</link>
	<description>楽しく幸せに人生を送るためにはどうすれば良いのか？人生の要素をお金、仕事、勉強、プライベート、健康、心の6要素に分類して考察しています。プログラミング入門に関する記事も掲載。</description>
	<lastBuildDate>Wed, 09 Mar 2016 04:20:46 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/category/python/python-loop/feed" />
	<item>
		<title>三項式</title>
		<link>https://worthliv.com/python_post_9.html</link>
		<comments>https://worthliv.com/python_post_9.html#comments</comments>
		<pubDate>Fri, 31 May 2013 07:38:25 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[制御・繰り返し（ループ）と条件分岐]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1276</guid>
		<description><![CDATA[Pythonでは、if～else文を三項式の形でも書けます。 以下のようなスクリプトを例で書きます。 スポンサーリンク for i in range(10): if i % 2 == 0: a = str(i) + 'は [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/python_post_9.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/python_post_9.html" />
	</item>
		<item>
		<title>inによる条件式</title>
		<link>https://worthliv.com/python_in.html</link>
		<comments>https://worthliv.com/python_in.html#comments</comments>
		<pubDate>Fri, 31 May 2013 06:58:30 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[制御・繰り返し（ループ）と条件分岐]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1275</guid>
		<description><![CDATA[inの条件式 Pythonでは、他言語にはあまり見られない、「in」という条件式の書き方があります。 スポンサーリンク SQLのIN文のようなイメージです。 lists = [2,5,13,24] for i in ra [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/python_in.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/python_in.html" />
	</item>
		<item>
		<title>比較演算子・論理演算子</title>
		<link>https://worthliv.com/python_post_8.html</link>
		<comments>https://worthliv.com/python_post_8.html#comments</comments>
		<pubDate>Fri, 31 May 2013 06:11:16 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[制御・繰り返し（ループ）と条件分岐]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1274</guid>
		<description><![CDATA[比較演算子 if文で条件式を書く場合、他言語と同様に、Pythonでも比較演算子を用いることが多いです。 スポンサーリンク Pythonの比較演算子は、ほとんどの言語と共通で分かりやすいです。 ==　　　a == b　　 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/python_post_8.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/python_post_8.html" />
	</item>
		<item>
		<title>if～elif～elseの条件分岐</title>
		<link>https://worthliv.com/python_ifelifelse.html</link>
		<comments>https://worthliv.com/python_ifelifelse.html#comments</comments>
		<pubDate>Fri, 31 May 2013 05:33:38 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[制御・繰り返し（ループ）と条件分岐]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1273</guid>
		<description><![CDATA[Pythonの条件分岐は、多くのプログラミング言語と同様に、if文で行います。 if文の勉強のために、プログラミングで有名なFizzBuzz問題を解いてみます。 スポンサーリンク FizzBuzz問題とは・・・ 1から順 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/python_ifelifelse.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/python_ifelifelse.html" />
	</item>
		<item>
		<title>whileループ</title>
		<link>https://worthliv.com/python_while.html</link>
		<comments>https://worthliv.com/python_while.html#comments</comments>
		<pubDate>Fri, 31 May 2013 05:06:36 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[制御・繰り返し（ループ）と条件分岐]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1272</guid>
		<description><![CDATA[Pythonでは、他言語のループ制御と同様に、while文も使えます。 whileで指定した条件が、「真」と評価される間は、ブロックが実行されて、ループが繰り返されます。 for文との違いは、カウンタとなる変数を必ずしも [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/python_while.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/python_while.html" />
	</item>
		<item>
		<title>forループ</title>
		<link>https://worthliv.com/python_for.html</link>
		<comments>https://worthliv.com/python_for.html#comments</comments>
		<pubDate>Thu, 30 May 2013 09:50:42 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[制御・繰り返し（ループ）と条件分岐]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1271</guid>
		<description><![CDATA[Pythonの制御構造には、ほかのプログラミング言語と同様に、ループ（繰り返し）と条件分岐が備わっています。 まずは、ループの代表格である、forループ。 スポンサーリンク forループの書き方 for i in ran [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/python_for.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/python_for.html" />
	</item>
	</channel>
</rss>
