Python for Django - Loops / Döngüler Ders #4

in #utopian-io8 years ago (edited)

Turkish
Merhaba arkadaşlar, bu proje deposu, python öğrenme temelli olup, adım adım ilerleyecektir. Projenin sonlarında python temelli olan django web uygulaması olarak bir url'den sunulacaktır. Aklınıza takılan yerler için soru sormaktan çekinmeyiniz. Eminim faydalı bir eğitim serisi olacaktır. Daha iyi django yazabilmek için daha iyi bir python'cu olmamız gerek arkadaşlar. Python eğitim serimiz ile şimdiden başarılar diliyorum hepinize. Bu yazımda sizlere daha iyi bir django için python'daki döngüleri anlatacağım. (For döngüsü / While döngüsü / continue / break kavramları)

English
Hi guys, this project repository is based on python learning and will progress step by step. At the end of the project, a django web application based on python will be presented from a URL. Do not hesitate to ask a question for your mind. I'm sure it will be a useful training series. We need to be a better python to write better django writer. I wish you success with Python training series already. In this post I will tell you about loops. (For Loop / While Loop / break / continue )

Github Repo

Github File

Youtube Video

Codes from lesson "EN" / Derste yazılan kodlar "TR":

degiskenimiz = "dogancankilment"
for her_bir_harf in degiskenimiz:
    print her_bir_harf

range(baslangic_degeri, bitis_degeri)
print range(0,100)

for her_bir_sayi in range(0,5):
    print her_bir_sayi

dizi = range(0,5)
print dizi
len(dizi)

for dizi_elemani in dizi:
    print dizi_elemani

dizi[0:3]
dizi[0:2]
while True:
    print "sonsuza dek yazacak"

while kontrol_sayimiz < 10:
    kontrol_sayimiz = kontrol_sayimiz +1
    print "kontrol_sayimiz: ", kontrol_sayimiz

continue  /// break

while kontrol_sayimiz < 10:
    kontrol_sayimiz = kontrol_sayimiz +1
    print "kontrol_sayimiz: ", kontrol_sayimiz
    break;



Posted on Utopian.io - Rewarding Open Source Contributors

Sort:  

Süper Paylaşım tebrikler.Takip ediyorum.

Thank you for the contribution. It has been approved.

You can contact us on Discord.
[utopian-moderator]

Hey @dogancankilment I am @utopian-io. I have just upvoted you!

Achievements

  • You have less than 500 followers. Just gave you a gift to help you succeed!
  • Seems like you contribute quite often. AMAZING!

Community-Driven Witness!

I am the first and only Steem Community-Driven Witness. Participate on Discord. Lets GROW TOGETHER!

mooncryption-utopian-witness-gif

Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x

Coin Marketplace

STEEM 0.04
TRX 0.32
JST 0.082
BTC 60785.45
ETH 1557.47
USDT 1.00
SBD 0.47