LOGO Meets PYTHON On A Visual Trip ...

LOGO meets PYTHON on a visual trip ...

How I rediscovered Logo with the Python Turtle module
Opensource.com
When I was in high school, one of the very first programming languages I was introduced to was Logo. It was interactive and visual.

Post #11: Ayush Sharma, How I rediscovered Logo with the Python Turtle module, 2023.

More Posts from Python-programming-language and Others

Der MITP-Verlag ist immer wieder eine gute Wahl ...

Der MITP-Verlag Ist Immer Wieder Eine Gute Wahl ...

Michael Weigend ist für mich einer der besten Autoren, wenn es um gute Fachbücher zur Programmiersprache PYTHON geht. Er hat bislang Bücher für Anfänger, aber auch für Fortgeschrittene und Profis herausgegeben. Ich habe mittlerweile ein paar Bücher von ihm und lese sie immer wieder gerne, um in Python meine Kenntnisse zu vertiefen oder zu erweitern.

Der MITP-Verlag Ist Immer Wieder Eine Gute Wahl ...

Post #118: Michael Weigend, So einfach! Programmieren lernen mit Python, MITP Verlag, Frechen, 208 Seiten, 2023.


Tags

Coding with Estefania ...

www.pythonbytesize.com

Welcome to Coding with Estefania
YouTube
Hi! I'm Estefania. If you are learning how to code, my channel is for you. You will find coding tutorials, exercises, and projects built wit

https://www.freecodecamp.org/news/

Post #140: YouTube, Coding with Estefania, 2024.


Tags

Hello Python, nice to meet you ...

Hello Python, Nice To Meet You ...
Amol Blog
A Hello World Program is the first computer program that learns every beginner no matter which Programming Language you want to learn

Post #2: www.amolblog.com, "Hello World" in 10 different programming languages, 2023.


Tags

Guido van Rossum explains Python programming ...

Post #39: YouTube, Lex Clips, Guido van Rossum explains Python programming, 2023.


Tags

Udemy, Die US-amerikanische Lernplattform im Internet ...

Udemy, Die US-amerikanische Lernplattform Im Internet ...

Post: #127: Udemy, Jannick Leismann, der komplette Python Meisterkurs, Lerne Python von A bis Z, 2024.


Tags

Python Tutorial - Zero to Hero ...

I recommend this excellent Python Tutorial !!!

Post #131: YouTube, TechWorld with Nana, Python Tutorial for Beginners, Learn Python in 5 hours, 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
Ein Richtig Gutes Taschenbuch Für Den Einstieg In Die Programmiersprache "Python". Das Buch Ist Zwar

Ein richtig gutes Taschenbuch für den Einstieg in die Programmiersprache "Python". Das Buch ist zwar schlank, aber trotzdem ausführlich und kompetent. Michael Weigend gehört für mich zu den besten deutschsprachigen Autoren zur Programmierung mit Python, der verständlich schreibt und ein solides Fachwissen vermittelt.

Post #27: Michael Weigend, Python 3 Schnelleinstieg, Programmieren lernen in 14 Tagen, mitp Verlag, Frechen, 2021.


Tags

Python Tutorial #22 Klassen und Objekte ...

Post #85: YouTube, Programmieren Starten, #22/24 Klassen und Objekte, 2023.


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

Fan, Exploration & Learning Page

173 posts

Explore Tumblr Blog
Search Through Tumblr Tags