FOR LOOPS IN PYTHON – Aptana Studio 3 Turkish Video Tutorial

in utopian-io •  7 years ago  (edited)



Tutorial : FOR LOOPS IN PYTHON – Aptana Studio 3 Turkish Video Tutorial

Video : Turkish Language
Githup link: Aptana Studio 3

Aptana Studio 3 is our code base and complete environment that includes extensive capabilities to build Ruby and Rails, PHP, and Python applications, along with complete HTML, CSS and JavaScript editing. More information for Aptana Studio 3

What We Can Learn?
We entered the python loop and processed the For loop in this video tutorial.

We Learn About
We learned to do For Loops and learned the use of conditional commands in the For Loop. We did calculator with For Loop and used different codes.

Requirements
1-Aptana Studio 3

Difficulty
Basic Level

Description
We continue to learn Python in this video. In the video, I talked about For loops. For loops are traditionally used when you have a block of code which you want to repeat a fixed number of times.The Python for statement iterates over the members of a sequence in order, executing the block each time. In this section we will try to understand what the For loop is in Python and what it does.

Video Tutorial - Turkish Language 720p


Curriculum

If you want to learn more about Python in Aptana Studio 3, I've made some video tutorials about Python before, you can see them below !!

https://steemit.com/utopian-io/@tarikhakan55/while-loops-in-python-aptana-studio-3-turkish-video-tutorial

https://steemit.com/utopian-io/@tarikhakan55/data-types-and-data-conversion-operations-in-python-aptana-studio-3-turkish-tutorial

https://steemit.com/utopian-io/@tarikhakan55/eval-command-and-usage-in-python-aptana-studio-3-turkish-tutorial

https://steemit.com/utopian-io/@tarikhakan55/if-conditional-command-and-usage-in-python-aptana-studio-3-turkish-tutorial

https://steemit.com/utopian-io/@tarikhakan55/import-math-functions-and-usage-in-python-aptana-studio-3-turkish-tutorial

And More Details From This Video

harfler = "abcdgeoujtyn"
x = 0
while x < len(harfler):
     print(harfler[x], sep="\n")
     x +=1

   
rakamlar = "0123456789"
for rakam in rakamlar:
    print(rakam)

   
sayılar = "123456789"
for sayı in sayılar:
    print(int(sayı) * 3)


trharfler ="şçöüğİı"
sifre = input("Parolanız :")

for deger in sifre:
    if deger in trharfler:
        print("Şifrede Türkçe Karakter Kullnamayınız!")


karakterler = "0123456789+-*/= "

print("""
Hesap Makinei For Döngülü
İşlemler
+ Topla
- Çıkar
* Çarp
/ Bölme

""")
while True:
    veri = input("İşleminizi Yazınız :")
    if veri =="q":
        print("Programdan Çıkılıyor...")
        break
    
    for sayı in veri:
        if sayı not in  karakterler:
            print("Yanlış Yoldaınız!")
            quit()
            
    hesapla = eval(veri)
    print(hesapla)



Author : @tarikhakan55
Steemit Türkiye & Utopian-io
Community



Posted on Utopian.io - Rewarding Open Source Contributors

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Güzel seri, eline sağlık hocam.

Ben teşekkür ederim @murattatar . Asıl sizin kum saatleri güzel o konuda yakında özel bilgi alıcam sizden...

Thank you for the contribution. It has been approved.

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

Thank you for return

Hey @tarikhakan55 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

  • Hi, you should include more topics in the tutorials. The rules require it.
  • The difficulty level is only basic.
  • Aptana studio is not and should not be really a requirement to write Python programs. You do not teach anything about Aptana. Your tutorial is about Python and as such, it should be linked with Python.
  • You might try to improve your skill in Python as you make some basic mistakes such as the identation.

Hi @espoem. Thank you your comment
I will consider the recommendations in the next tutorial
But I do not agree with you in that part "The difficulty level is only basic."
Because The tutorial series of a program must be basic level to advanced level.
What are your thoughts on this issue?

You teach how to get familiar with the essential concepts of programming in Python. Those are basic commands that any programmer has to know to get to higher level. It does not make it less important but the examples and the topic itself does not cross the initial learning phase. Actually your requirements "Basic Python knowledge" would cover this.

You do not use any advanced commands, therefore I believe that the difficulty level of these tutorials should be set as basic only.

I understand what you mean now
Corrected post level
Thank you @espoem :)