Programming - It's Your Choice ...

Programming - It's your choice ...

Post #14: YouTube, Top 10 Programming Languages in 2023.

More Posts from Python-programming-language and Others

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

Udemy, Python, OOP For Beginners And More ...

Python OOP: Object Oriented Programming From Beginner to Pro
Udemy
Everything you need to develop great object oriented software. Classes, objects, polymorphism, SOLID, Design Patterns...

Post #152: Udemy, Danny Adams, Python OOP, Object-Oriented Programming, From Beginner To Pro, 2024.


Tags

SoloLearn, Certificate: Python Introduction ...

SoloLearn, Certificate: Python Introduction ...

The structure of the Tutorial ...

SoloLearn, Certificate: Python Introduction ...

Example of the content of the chapter "functions" ...

SoloLearn, Certificate: Python Introduction ...
SoloLearn, Certificate: Python Introduction ...

Post #181: SoloLeaarn, Certificate, Python Tutorial, Introduction, 2024.


Tags

100 Days Of Python: Try it out!

Attention: This Python Course is only suitable for those learners who have prior knowledge in Python, because there are a lot of advanced exercises.

Post #180: London App Brewery OR Udemy, Dr. Angela Yu, 100 Days Of Python, From Beginner To Professional Python Developer, 2024.


Tags

Get into Programming with ...

Get Into Programming With ...

You can catch a course and at the end a certificate ...

Get Into Programming With ...

But for me it's more important to dive into a course ...

Get Into Programming With ...

Post #36: Programming Hub for Android, different programming courses, 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

Difference between Terminal, Console, Shell, and Command Line - GeeksforGeeks

Difference between Terminal, Console, Shell, and Command Line - GeeksforGeeks
GeeksforGeeks
A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, qu

Post #223: GeeksForGeeks, Der Unterschied zwischen dem Terminal, der Konsole, der Shell und der Eingabeaufforderung, 2025.


Tags

Informatik - Unterrichtsmaterialien ...

Informatik - Unterrichtsmaterialien ...

Post #10: SwissEduc - Informatik, Materialien für den Informatik-Unterricht, 2023.


Tags

Programmieren lernen mit Michael Kofler ...

Obwohl die Entwicklung von Python schon 1991 begann, stand die Sprache lange im Schatten anderer Programmiersprachen. So richtig im Mainstream angekommen ist Python erst in den vergangenen Jahren. Dabei gibt es viele Gründe für die Popularität von Python: 1. recht einfache Syntax, 2. gut lesbarer Quelltext, 3. schlanke Programmiersprache, 4. effektives Modulkonzept, 5. eignet sich für Wissenschaft, Forschung und Bildung und 6. bevorzugte Programmiersprache beim Raspberry Pi.

Programmieren Lernen Mit Michael Kofler ...

Although development of Python began in 1991, the language has long been overshadowed by other programming languages. Python has only really arrived in the mainstream in recent years. There are many reasons for the popularity of Python: 1. very simple syntax, 2. easily readable source code, 3. lean programming language, 4. effective module concept, 5. suitable for science, research and education and 6. preferred programming language for the Raspberry Pi.

Post #47: Michael Kofler, Python - Der Grundkurs, Rheinwerk Verlag, Bonn, 2. aktualisierte Auflage, 2022.


Tags

Post #83: Tumblr Opinion Poll by Python-Programming-Language, Question: Which programming resp. script language do you prefer?, 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