<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>pyhton dersleri 1 by </title>
      <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm</link>
      <description>sa arkadaşlar bugün sizlere pyhton&#39;la ilgili ders vericem.....
</description>
      <language>en-us</language>
      <pubDate>2018-12-04 10:47:51 UTC</pubDate>
      <lastBuildDate>2025-11-11 00:55:43 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>MERHABA DÜNYA </title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310817958</link>
         <description><![CDATA[<div>print ("Merhaba, Dünya!")</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-12-04 10:53:58 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310817958</guid>
      </item>
      <item>
         <title>Python iki sayının toplamını yazdırma</title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818170</link>
         <description><![CDATA[<div><br>num1 = 10</div><div>num2 = 8.5</div><div> </div><div># iki sayının toplamı</div><div>sum = <strong>int</strong>(num1) + <strong>float</strong>(num2)</div><div> </div><div># sonucu yazdırma</div><div>print('{0} + {1} = {2}'.format(num1, num2, sum))</div><div> </div>]]></description>
         <enclosure url="" />
         <pubDate>2018-12-04 10:54:32 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818170</guid>
      </item>
      <item>
         <title>Kullanıcı tarafından girilen iki sayının toplamı</title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818334</link>
         <description><![CDATA[<div>num1 = <strong>int</strong>(input("birinci sayıyı giriniz :"))</div><div>num2 = <strong>int</strong>(input("ikinci sayıyı giriniz :"))</div><div> </div><div> </div><div># iki sayının toplamı</div><div>sum = <strong>int</strong>(num1) + <strong>float</strong>(num2)</div><div> </div><div># sonucu yazdırma</div><div>print('{0} + {1} = {2}'.format(num1, num2, sum))</div><div> </div>]]></description>
         <enclosure url="" />
         <pubDate>2018-12-04 10:55:01 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818334</guid>
      </item>
      <item>
         <title>İki sayının ortalamasını yazdırma</title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818507</link>
         <description><![CDATA[<div>num1 = 100</div><div>num2 = 5</div><div> </div><div># İki sayının ortalaması</div><div>division = <strong>int</strong>(num1) / <strong>int</strong>(num2)</div><div> </div><div># SOnucu yazdırma</div><div>print('{0} / {1} = {2}'.format(num1, num2, division))</div><div> </div>]]></description>
         <enclosure url="" />
         <pubDate>2018-12-04 10:55:33 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818507</guid>
      </item>
      <item>
         <title>Kullanıcı tarafından girilen iki sayının ortalamasını hesaplama</title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818739</link>
         <description><![CDATA[<div>num1 = <strong>int</strong>(input("1. sayıyı giriniz :"))</div><div>num2 = <strong>int</strong>(input("2. sayıyı giriniz :"))</div><div> </div><div># İki sayının ortalaması</div><div>sonuc = <strong>int</strong>(num1) / <strong>int</strong>(num2)</div><div> </div><div># SOnucu yazdırma</div><div>print('{0} / {1} = {2}'.format(num1, num2, sonuc))</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-12-04 10:56:09 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818739</guid>
      </item>
      <item>
         <title>İki sayının yer değiştirmesi</title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818962</link>
         <description><![CDATA[<div>num1 = 75</div><div>num2 = 42</div><div> </div><div> </div><div>print('Değiştirmeden Önce')</div><div>print('İlk Sayı:{0} '.format(num1))</div><div>print('İkinci Sayı:{0} '.format(num2))</div><div>print('\n')</div><div> </div><div>num1=num1+num2;  </div><div>num2=num1-num2;  </div><div>num1=num1-num2;</div><div> </div><div>print('Değiştirdikten Sonra')</div><div>print('İlk Sayı:{0} '.format(num1))</div><div>print('İkinci Sayı:{0} '.format(num2))</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-12-04 10:56:50 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310818962</guid>
      </item>
      <item>
         <title>Virgülle( ,) girilen tüm sayıları toplayıp ortalamasını yazdıran program</title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310819265</link>
         <description><![CDATA[<div>print("Bu örnek kullanıcı tarafıdan virgül ile girilen sayıların ortalamasını hesaplar")</div><div> </div><div>numaralar = input("Virgül ile sayıları giriniz.: ")</div><div> </div><div>print("Girdiğiniz Sayılar: {0}".format(numaralar))</div><div> </div><div>numaralarArr=numaralar.split(",")</div><div>toplam = 0</div><div><strong>for</strong> n <strong>in</strong> numaralarArr:</div><div>   toplam = toplam + <strong>int</strong>(n)</div><div> </div><div>print("GİRDİĞİNİZ SAYILARIN ORTALMASI:{0:.2f} ".format(toplam / len(numaralarArr)))</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-12-04 10:57:44 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310819265</guid>
      </item>
      <item>
         <title> 3’e yada 5’e tam bölünen numaraları listeler</title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310819682</link>
         <description><![CDATA[<div><strong>for</strong> i <strong>in</strong> range(1,101):</div><div>    <strong>if</strong> i%3==0 <strong>or</strong> i%5==0:</div><div>        print(i)</div>]]></description>
         <enclosure url="" />
         <pubDate>2018-12-04 10:59:21 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310819682</guid>
      </item>
      <item>
         <title></title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820068</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/339467115/b5576034be5c71d678a7953873046ead/01.png" />
         <pubDate>2018-12-04 11:00:55 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820068</guid>
      </item>
      <item>
         <title></title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820218</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/339467115/bac607b9fb5a863dd2d497003eb8e393/02.png" />
         <pubDate>2018-12-04 11:01:36 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820218</guid>
      </item>
      <item>
         <title></title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820489</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/339467115/613a84077b663802ff044ca0d9a4ac57/04.png" />
         <pubDate>2018-12-04 11:02:53 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820489</guid>
      </item>
      <item>
         <title></title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820682</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/339467115/b461cfb0caa73c1e6e6ef42cf2589fbb/03.png" />
         <pubDate>2018-12-04 11:03:48 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820682</guid>
      </item>
      <item>
         <title></title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820826</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/339467115/140ffa08483ef09e86a88d037d5624a9/05.png" />
         <pubDate>2018-12-04 11:04:26 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820826</guid>
      </item>
      <item>
         <title></title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820981</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/339467115/be47ca48598bec917061ad0960f4ffa2/06.png" />
         <pubDate>2018-12-04 11:05:06 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310820981</guid>
      </item>
      <item>
         <title></title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310821235</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/339467115/acc6ad42b4726c99338ec0e4c88b9868/08.png" />
         <pubDate>2018-12-04 11:06:13 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310821235</guid>
      </item>
      <item>
         <title></title>
         <author>ekoparipek8616</author>
         <link>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310821487</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/339467115/7536848a447371e193f0cf7ce311c0ef/07.png" />
         <pubDate>2018-12-04 11:07:17 UTC</pubDate>
         <guid>https://padlet.com/ekoparipek8616/uqzwug52xbxm/wish/310821487</guid>
      </item>
   </channel>
</rss>
