<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Python ile Programlama Deneyimleri</title>
	<atom:link href="http://pythonileprogramlama.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pythonileprogramlama.wordpress.com</link>
	<description>Yeni başlayanlar için Python</description>
	<lastBuildDate>Mon, 08 Sep 2008 19:11:02 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pythonileprogramlama.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Python ile Programlama Deneyimleri</title>
		<link>http://pythonileprogramlama.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pythonileprogramlama.wordpress.com/osd.xml" title="Python ile Programlama Deneyimleri" />
	<atom:link rel='hub' href='http://pythonileprogramlama.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Fonksiyonlar (Functions)</title>
		<link>http://pythonileprogramlama.wordpress.com/2008/09/08/fonksiyonlar-functions/</link>
		<comments>http://pythonileprogramlama.wordpress.com/2008/09/08/fonksiyonlar-functions/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 18:27:59 +0000</pubDate>
		<dc:creator>rimbi</dc:creator>
				<category><![CDATA[Başlangıç Seviyesi]]></category>
		<category><![CDATA[fonksiyon]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[içiçe fonksiyon]]></category>
		<category><![CDATA[lambda fonksiyonları]]></category>
		<category><![CDATA[nested function]]></category>

		<guid isPermaLink="false">http://pythonileprogramlama.wordpress.com/?p=28</guid>
		<description><![CDATA[İşte size örnek bir fonksiyon tanımı &#62;&#62;&#62; def topla(a,b): &#8230;     return a + b &#8230; Fonksiyon tanımları def anahtar kelimesi ile başlıyor. Ardından fonksiyonun ismi ve parametreleri geliyor. Diğer bütün blok tanımlamalarında olduğu gibi satır : ile sonlanıyor. Fonksiyonun kendisine ait kodlar içeri girintili olarak yazılıyor. Dikkat ederseniz nasıl değişkenleri tanımlarken tip belirtmiyorsak fonksiyon [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=28&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>İşte size örnek bir fonksiyon tanımı</p>
<blockquote><p>&gt;&gt;&gt; def topla(a,b):<br />
&#8230;     return a + b<br />
&#8230;</p></blockquote>
<p>Fonksiyon tanımları <strong>def</strong> anahtar kelimesi ile başlıyor. Ardından fonksiyonun ismi ve parametreleri geliyor. Diğer bütün blok tanımlamalarında olduğu gibi satır <strong>: </strong>ile sonlanıyor. Fonksiyonun kendisine ait kodlar içeri girintili olarak yazılıyor.</p>
<p>Dikkat ederseniz nasıl değişkenleri tanımlarken tip belirtmiyorsak fonksiyon tanımlarken de geri dönüş değeri belirtmemiz gerekmiyor. Fonksiyonu çağırıp sonucunu görelim:</p>
<blockquote><p>&gt;&gt;&gt; print &#8220;3 + 5 = %d&#8221; % topla(3, 5)<br />
3 + 5 = 8<br />
&gt;&gt;&gt;</p></blockquote>
<p>Bir de şuna bakın:</p>
<blockquote><p>&gt;&gt;&gt; add=topla<br />
&gt;&gt;&gt; print add(4, 5)<br />
9<br />
&gt;&gt;&gt;</p></blockquote>
<p>Burada bir değişkene fonksiyon ataması yaptık. Artık <strong>add </strong>değişkenini de <strong>topla</strong> fonksiyonu gibi kullanılabilir kıldık. Python&#8217;ı esnek ve kullanımı kolay kılan özelliklerinden sadece biri bu.</p>
<p>Normal fonksiyon tanımlamaları dışında <strong>lambda fonksiyonları</strong> da tanımlamak mümkün. Mesela <strong>topla</strong> fonksiyonunu şu şekilde de ifade edebiliriz:</p>
<blockquote><p>&gt;&gt;&gt; topla = lambda a,b : a + b<br />
&gt;&gt;&gt; print topla(1, 2)<br />
3<br />
&gt;&gt;&gt;</p></blockquote>
<p>Lambda fonksiyonları tek satırlık, tek işlemlik fonksiyon tanımları için kullanılabilmektedir.</p>
<p>Fonksiyon içinde fonksiyon tanımlamak da mümkün:</p>
<blockquote><p>&gt;&gt;&gt; def topla_ve_yazdir(a, b):<br />
&#8230;     def yazdir(a, b, sonuc):<br />
&#8230;         print &#8220;%d + %d = %d&#8221; % (a, b, sonuc)<br />
&#8230;     yazdir(a, b, a + b)<br />
&#8230;<br />
&gt;&gt;&gt; topla_ve_yazdir(5, 6)<br />
5 + 6 = 11<br />
&gt;&gt;&gt;</p></blockquote>
<p>Burada dikkat edilmesi gereken husus şudur: <strong>yazdir </strong>fonksiyonu sadece <strong>topla_ve_yazdir</strong> fonksiyonu içinden çağırılabilir.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pythonileprogramlama.wordpress.com/28/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pythonileprogramlama.wordpress.com/28/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pythonileprogramlama.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pythonileprogramlama.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pythonileprogramlama.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pythonileprogramlama.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pythonileprogramlama.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pythonileprogramlama.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pythonileprogramlama.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pythonileprogramlama.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pythonileprogramlama.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pythonileprogramlama.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pythonileprogramlama.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pythonileprogramlama.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pythonileprogramlama.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pythonileprogramlama.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=28&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pythonileprogramlama.wordpress.com/2008/09/08/fonksiyonlar-functions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/100b7dca3711d24f00fe593b12607304?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rimbi</media:title>
		</media:content>
	</item>
		<item>
		<title>The Book for Django Web Application Framework</title>
		<link>http://pythonileprogramlama.wordpress.com/2008/09/08/the-book-for-django-web-application-framework/</link>
		<comments>http://pythonileprogramlama.wordpress.com/2008/09/08/the-book-for-django-web-application-framework/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 11:27:38 +0000</pubDate>
		<dc:creator>rimbi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pythonileprogramlama.wordpress.com/2008/09/08/the-book-for-django-web-application-framework/</guid>
		<description><![CDATA[The Book of Django WebApp Framework read more &#124; digg story<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=27&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Book of Django WebApp Framework</p>
<p><a href="http://www.djangobook.com/">read more</a> | <a href="http://digg.com/software/The_Book_for_Django_Web_Application_Framework">digg story</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pythonileprogramlama.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pythonileprogramlama.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pythonileprogramlama.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pythonileprogramlama.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pythonileprogramlama.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pythonileprogramlama.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pythonileprogramlama.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pythonileprogramlama.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pythonileprogramlama.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pythonileprogramlama.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pythonileprogramlama.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pythonileprogramlama.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pythonileprogramlama.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pythonileprogramlama.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pythonileprogramlama.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pythonileprogramlama.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=27&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pythonileprogramlama.wordpress.com/2008/09/08/the-book-for-django-web-application-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/100b7dca3711d24f00fe593b12607304?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rimbi</media:title>
		</media:content>
	</item>
		<item>
		<title>Değişkenler (Variables)</title>
		<link>http://pythonileprogramlama.wordpress.com/2008/09/07/degiskenler-variables/</link>
		<comments>http://pythonileprogramlama.wordpress.com/2008/09/07/degiskenler-variables/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 09:53:23 +0000</pubDate>
		<dc:creator>rimbi</dc:creator>
				<category><![CDATA[Başlangıç Seviyesi]]></category>
		<category><![CDATA[değişken]]></category>
		<category><![CDATA[floating point]]></category>
		<category><![CDATA[integer]]></category>
		<category><![CDATA[karakter dizisi]]></category>
		<category><![CDATA[kayan noktalı sayı]]></category>
		<category><![CDATA[string]]></category>
		<category><![CDATA[tam sayı]]></category>
		<category><![CDATA[variable]]></category>

		<guid isPermaLink="false">http://pythonileprogramlama.wordpress.com/?p=18</guid>
		<description><![CDATA[Python&#8217;da değişken tanımlamak oldukça basit: &#62;&#62;&#62; x = 3 Bu şekilde x değişkenine atama yaptığımız anda değişken tipini de  tam sayı (integer) olarak belirlemiş oluyoruz. Söylediğimizi doğrulayalım: &#62;&#62;&#62; print x.__doc__ int(x[, base]) -&#62; integer Convert a string or number to an integer, if possible.  A floating point argument will be truncated towards zero (this does [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=18&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Python&#8217;da değişken tanımlamak oldukça basit:</p>
<blockquote><p>&gt;&gt;&gt; x = 3</p></blockquote>
<p>Bu şekilde x değişkenine atama yaptığımız anda değişken tipini de  tam sayı (integer) olarak belirlemiş oluyoruz. Söylediğimizi doğrulayalım:</p>
<blockquote><p>&gt;&gt;&gt; print x.__doc__<br />
int(x[, base]) -&gt; integer</p>
<p>Convert a string or number to an integer, if possible.  A floating point<br />
argument will be truncated towards zero (this does not include a string<br />
representation of a floating point number!)  When converting a string, use<br />
the optional base.  It is an error to supply a base when converting a<br />
non-string. If the argument is outside the integer range a long object<br />
will be returned instead.</p></blockquote>
<p>Python&#8217;da tam sayı (integer), kayan-noktalı sayı (floating point number), <a href="http://pythonileprogramlama.wordpress.com/2008/09/07/karakter-dizileri-strings/" target="_self">karakter dizileri (strings)</a> gibi bazı temel veri tipleri dışında çok kullanılan liste (list), sözlük (dictionary) ve tuple veri tipleri de mevcuttur. Ama bunlar başka yazıların konuları.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pythonileprogramlama.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pythonileprogramlama.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pythonileprogramlama.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pythonileprogramlama.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pythonileprogramlama.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pythonileprogramlama.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pythonileprogramlama.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pythonileprogramlama.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pythonileprogramlama.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pythonileprogramlama.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pythonileprogramlama.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pythonileprogramlama.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pythonileprogramlama.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pythonileprogramlama.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pythonileprogramlama.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pythonileprogramlama.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=18&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pythonileprogramlama.wordpress.com/2008/09/07/degiskenler-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/100b7dca3711d24f00fe593b12607304?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rimbi</media:title>
		</media:content>
	</item>
		<item>
		<title>Karakter Dizileri (Strings)</title>
		<link>http://pythonileprogramlama.wordpress.com/2008/09/07/karakter-dizileri-strings/</link>
		<comments>http://pythonileprogramlama.wordpress.com/2008/09/07/karakter-dizileri-strings/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 09:01:14 +0000</pubDate>
		<dc:creator>rimbi</dc:creator>
				<category><![CDATA[Başlangıç Seviyesi]]></category>
		<category><![CDATA[karakter dizisi]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://pythonileprogramlama.wordpress.com/2008/09/07/karakter-dizileri-strings/</guid>
		<description><![CDATA[Karakter dizileri herhangi bir programlama dilinde muhtemelen en çok ihtiyaç duyulacak veri tiplerinin başında gelir. Python karakter dizileri oldukça kullanışlıdır. Python&#8217;da değişken tipleri çalışma esnasında (run-time) belirlenmektedir. Mesela şunu uyguladığınızda &#62;&#62;&#62; str = &#8220;Merhaba&#8221; ya da şunu &#62;&#62;&#62; str = &#8216;Merhaba&#8217; bir karakter dizisi yaratmış ve bu karakter dizisine str (string kelimesinin kısaltması olarak yaygınca [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=14&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Karakter dizileri herhangi bir programlama dilinde muhtemelen en çok ihtiyaç duyulacak veri tiplerinin başında gelir. Python karakter dizileri oldukça kullanışlıdır.<br />
Python&#8217;da değişken tipleri çalışma esnasında (run-time) belirlenmektedir. Mesela şunu uyguladığınızda</p>
<blockquote><p>&gt;&gt;&gt; str = &#8220;Merhaba&#8221;</p></blockquote>
<p>ya da şunu</p>
<blockquote><p>&gt;&gt;&gt; str = &#8216;Merhaba&#8217;</p></blockquote>
<p>bir karakter dizisi yaratmış ve bu karakter dizisine str (string kelimesinin kısaltması olarak yaygınca kullanılan bir değişken ismi) isimli bir değişken ile ulaşılabilmesini sağlamış oluyoruz. Bu şekilde <strong>str</strong> değişkeninin tipi karakter dizisi olarak atanmış oluyor. <strong>str</strong> değişkenin tipini ve bu tipe ait açıklamayı şu şekilde öğrenebiliriz:</p>
<blockquote><p>&gt;&gt;&gt; print str.__doc__</p>
<p>str(object) -&gt; string</p>
<p>Return a nice string representation of the object.<br />
If the argument is a string, the return value is the same object.</p></blockquote>
<p>Bir karakter dizisinin uzunluğunu öğrenmek için <strong>len</strong> fonksiyonunu kullanıyoruz.</p>
<blockquote><p>&gt;&gt;&gt; len(str)</p>
<p>7</p></blockquote>
<p>İki karakter dizisini birbirine iliştirmek için ise<strong> +</strong> işaretini kullanmak yeterli. Şöyle ki,</p>
<blockquote><p>&gt;&gt;&gt; str1 = &#8220;Merhaba &#8220;</p>
<p>&gt;&gt;&gt; str2 = &#8220;dünya!&#8221;</p>
<p>&gt;&gt;&gt; str3 = str1 + str2</p>
<p>&gt;&gt;&gt; str3</p>
<p>&#8216;Merhaba dünya!&#8217;</p></blockquote>
<p>Uzun karakter dizilerini birden fazla satıra yamak da mümkün:</p>
<blockquote><p>&gt;&gt;&gt; str = &#8216;Bu karakter dizisi \<br />
&#8230; birden fazla satira sigacak \<br />
&#8230; kadar uzatildi&#8217;<br />
&gt;&gt;&gt;</p></blockquote>
<p>Bunu yapmanın bir diğer yolu da <strong>&#8220;&#8221;"</strong> (3 bitişik tırnak işareti) kullanmak:</p>
<blockquote><p>&gt;&gt;&gt; str = &#8220;&#8221;"Bu karakter dizisi de<br />
&#8230; birden fazla satira sigacak<br />
&#8230; kadar uzatildi&#8221;"&#8221;<br />
&gt;&gt;&gt;</p></blockquote>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pythonileprogramlama.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pythonileprogramlama.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pythonileprogramlama.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pythonileprogramlama.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pythonileprogramlama.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pythonileprogramlama.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pythonileprogramlama.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pythonileprogramlama.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pythonileprogramlama.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pythonileprogramlama.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pythonileprogramlama.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pythonileprogramlama.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pythonileprogramlama.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pythonileprogramlama.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pythonileprogramlama.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pythonileprogramlama.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=14&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pythonileprogramlama.wordpress.com/2008/09/07/karakter-dizileri-strings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/100b7dca3711d24f00fe593b12607304?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rimbi</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://pythonileprogramlama.wordpress.com/2008/09/05/hello-world/</link>
		<comments>http://pythonileprogramlama.wordpress.com/2008/09/05/hello-world/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 19:17:05 +0000</pubDate>
		<dc:creator>rimbi</dc:creator>
				<category><![CDATA[Başlangıç Seviyesi]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Öncelikle merhaba. Burada sizlerle Python programlama dili ile ilgili deneyimlerimi paylaşmak istiyorum. Buradaki makalelerin pek çoğu Python&#8217;a yeni başlayanlar ve orta seviyeli Python kullanıcılarına hitap edecektir. Her ne kadar programlama yapmak için İngilizce&#8217;nin olmazsa olmaz olduğuna inansam da sitenin Türkçe kaynak eksikliğinin giderilmesi noktasında az da olsa faydalı olmasını temenni ediyorum. Pyhton yorumlanan (interpreted) diller [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=1&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Öncelikle merhaba. Burada sizlerle Python programlama dili ile ilgili deneyimlerimi paylaşmak istiyorum. Buradaki makalelerin pek çoğu Python&#8217;a yeni başlayanlar ve orta seviyeli Python kullanıcılarına hitap edecektir. Her ne kadar programlama yapmak için İngilizce&#8217;nin olmazsa olmaz olduğuna inansam da sitenin Türkçe kaynak eksikliğinin giderilmesi noktasında az da olsa faydalı olmasını temenni ediyorum.</p>
<p>Pyhton yorumlanan (interpreted) diller arasında yer alıyor. Yani yazdığınız kod bir yorumlayıcı tarafından yorumlanıp çalıştırılıyor. Derlenen diller gibi değil yani. Bu tür dillerde yazdığınız kod bir derleyici tarafından derlenip makine kodları içeren, çalıştırılabilir (executable) dosyalara dönüştürürler. (Çalıştırılabilir dosyaların windows&#8217;taki uzantısı .exe&#8217;dir.) </p>
<p>Python&#8217;u yüklediyseniz eğer (yüklemediyseniz <a href="http://www.python.org/ftp/python/2.5.2/python-2.5.2.msi" target="_blank">buradan</a> indirip yükleyebilirsiniz) komut satırından <strong>python.exe </strong>komutunu girerek Python yorumlayıcısını çalıştırabilirsiniz. </p>
<p><a href="http://pythonileprogramlama.files.wordpress.com/2008/09/commandprompt1.jpg"><img class="aligncenter size-medium wp-image-6" title="Python yorumlayıcısını komut satırından çalıştırmak" src="http://pythonileprogramlama.files.wordpress.com/2008/09/commandprompt1.jpg?w=300&#038;h=151" alt="" width="300" height="151" /></a></p>
<p> </p>
<p>Satır başında gördüğünüz <strong>&gt;&gt;&gt; </strong>işareti yorumlayıcının çalıştığını ve sizden komut beklediğini göstermektedir. Şimdi komut satırında</p>
<blockquote><p>&gt;&gt;&gt; print &#8216;Hello world!&#8217;</p></blockquote>
<p>yazın. Burada karakter dizileri (strings) için &#8216;(kesme) işareti yerine &#8220;(tırnak) işareti de kullanabilirsiniz. Daha sonra aşağıdaki sonucu görmüş olmanız gerekiyor.</p>
<p><a href="http://pythonileprogramlama.files.wordpress.com/2008/09/helloworld1.jpg"><img class="aligncenter size-medium wp-image-9" title="Hello world!" src="http://pythonileprogramlama.files.wordpress.com/2008/09/helloworld1.jpg?w=300&#038;h=151" alt="" width="300" height="151" /></a></p>
<p> </p>
<p>Tebrikler python ile ilk programınızı yazdınız. Bir sonraki yazıda görüşmek dileğiyle.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pythonileprogramlama.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pythonileprogramlama.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pythonileprogramlama.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pythonileprogramlama.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pythonileprogramlama.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pythonileprogramlama.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pythonileprogramlama.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pythonileprogramlama.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pythonileprogramlama.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pythonileprogramlama.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pythonileprogramlama.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pythonileprogramlama.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pythonileprogramlama.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pythonileprogramlama.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pythonileprogramlama.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pythonileprogramlama.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pythonileprogramlama.wordpress.com&amp;blog=4744111&amp;post=1&amp;subd=pythonileprogramlama&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pythonileprogramlama.wordpress.com/2008/09/05/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/100b7dca3711d24f00fe593b12607304?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rimbi</media:title>
		</media:content>

		<media:content url="http://pythonileprogramlama.files.wordpress.com/2008/09/commandprompt1.jpg?w=300" medium="image">
			<media:title type="html">Python yorumlayıcısını komut satırından çalıştırmak</media:title>
		</media:content>

		<media:content url="http://pythonileprogramlama.files.wordpress.com/2008/09/helloworld1.jpg?w=300" medium="image">
			<media:title type="html">Hello world!</media:title>
		</media:content>
	</item>
	</channel>
</rss>
