Python Tutorial #17 Die For-Schleife 2 ...

Python Tutorial #17 Die For-Schleife 2 ...

The source code of my exercise ...

Python Tutorial #17 Die For-Schleife 2 ...
Python Tutorial #17 Die For-Schleife 2 ...

The output of my source code ...

Python Tutorial #17 Die For-Schleife 2 ...

Post #65: YouTube, Programmieren Starten, Python Tutorial, #17, Die For-Schleife als Zählerschleife, 2023.

More Posts from Python-programming-language and Others

Literaturtipp: Codierung in 30 Sekunden ...

Literaturtipp: Codierung In 30 Sekunden ...
Literaturtipp: Codierung In 30 Sekunden ...
Literaturtipp: Codierung In 30 Sekunden ...

Post #101: Literaturtipp, Mark Steadman, Codierung in 30 Sekunden, Librero IBP Verlag, Niederlande, 160 Seiten, 2023.


Tags

Eine umfangreiche Einführung in Python 3 ...

Eine Umfangreiche Einführung In Python 3 ...
Eine Umfangreiche Einführung In Python 3 ...

Post #96: Bernd Klein, Einführung in Python 3 für Ein- und Umsteiger, Hansa Verlag, 2. Auflage, 494 Seiten, 2014.


Tags

What is Programming? A Handbook for Beginners ...

What is Programming? A Handbook for Beginners
freeCodeCamp.org
Welcome to the amazing world of programming. This is one of the most useful and powerful skills that you can learn and use to make your visi

Post #148: FreeCodeCamps, Estefania Cassingena Navone, What Is Programming, A Handbook for Beginners, 2024.


Tags

Happy programming with the learning app MIMO for Android ...

Happy Programming With The Learning App MIMO For Android ...
Happy Programming With The Learning App MIMO For Android ...
Happy Programming With The Learning App MIMO For Android ...

MIMO is one of the best learning apps for programming, script and database languages. There are 4 coding areas: 1. Python, 2. HTML, 3. SQL and 4. JavaScript. For each language you can get a certificate at the end of the course.

Happy Programming With The Learning App MIMO For Android ...
Happy Programming With The Learning App MIMO For Android ...
Happy Programming With The Learning App MIMO For Android ...

It is offered as an app for Android, iOS and is also running on the the web. You are a part of a community and the support by MIMO is very good. If you have the time and joy, you can take care of your daily streak, climb the leaderboard and win trophies.

Happy Programming With The Learning App MIMO For Android ...
Happy Programming With The Learning App MIMO For Android ...
Happy Programming With The Learning App MIMO For Android ...

Post #55: MIMO for Android and iOS, learning app for Python, SQL, HTML and JavaScript, 2023.


Tags

Turtle programming with Python: Sierpinski ...

Recursive Programming based on an idea by Sierpinski

The source code of my exercise, part 1 ...

Turtle Programming With Python: Sierpinski ...
Turtle Programming With Python: Sierpinski ...

The output of my source code ...

Turtle Programming With Python: Sierpinski ...

The source code of my exercise, part 2 ...

Turtle Programming With Python: Sierpinski ...
Turtle Programming With Python: Sierpinski ...

Post #40: Claudia Ermel & Olga Runge, Erste Schritte mit Python für Dummies Junior, Lass die Schildröte für dich arbeiten, Turtle Programmierung mit Python, Wiley Verlag, Weinheim, 2017.


Tags

Python Tutorial, #1 Dein erstes Programm ...

Instructions for installing the distribution of ANACONDA and PYCHARM for Python and programming the classical "Hello World!".

Python Tutorial, #1 Dein Erstes Programm ...

Post #1: YouTube, Programmieren Starten, Python Tutorial, #1 Dein erstes Programm, 2023.


Tags

Python Tutorial, #13 While-Schleife ...

Python Tutorial, #13 While-Schleife ...

The source code and output of my exercise ...

Python Tutorial, #13 While-Schleife ...

Post #49: YouTube, Programmieren-Starten, Python Tutorial, #13 While-Schleife, 2023.


Tags

John Philip Jones, Python Tutorial ...

www.pythonbytesize.com

Post #144: YouTube, John Philip Jones, Python Tutorial, #1 - #280 Videos, 2024.


Tags

My free exercise to eliminate same elements of a list ...

My Free Exercise To Eliminate Same Elements Of A List ...

Post #20: Two exercises by @elu-xx with an interesting suggestion for improvement. How can I code the first exercise shorter and on another way?, 2023.

14/04/23 - Day 14

list = [1, 2, 4, 4, 1, 4, 2, 6, 2, 9]
new_list =[]

for i in list:
    if i not in new_list:
        new_list.append(i)

list = new_list[:]
print(f"The list with unique elements only: {list}")

Today I finished the section about lists!

The script above deletes from the list the elements that appear more than once.

I also did this program:

#FIND THE LOCATION OF A ELEMENT IN A LIST

list =[1,2,3,4,5,6,7,8,9,10]
to_find = 5
found = False

for i in range(len(list)):
    found = list[i] == to_find
    if found == True:
        break

if found == True:
    print(f"Element found at {i}")    
else:
    print("Element not found")

It goes through the list to find an element and it output the position of the element.


Tags
Loading...
End of content
No more pages to load
  • python-programming-language
    python-programming-language liked this · 1 year ago
  • street--art--pics
    street--art--pics liked this · 1 year ago
  • turtle-programming
    turtle-programming liked this · 1 year ago
  • basic-retro-programming
    basic-retro-programming liked this · 1 year ago
  • streetart-everywhere
    streetart-everywhere liked this · 1 year ago
  • python-programming-language
    python-programming-language reblogged this · 1 year ago
python-programming-language - Python Programming
Python Programming

Fan, Exploration & Learning Page

173 posts

Explore Tumblr Blog
Search Through Tumblr Tags