MY Programming
MY Programming

MY Programming

In this blog i post my programms.


Python Basics Tutorial 4 for loop part 2

12 Sep 2026 1 minute read 0 comments Slash13 $0.03

4. Looping over dictionaries person = {"Name": "Alice", "Age": "13", "City": "New York"} #Keys only (default) for key in person:      print(key) #Keys explicitly for key in person.keys():       print(key) #Values for value in person.values():     pri...

Python Basics Tutorial 4 for loop , how to comment your code and how using time.sleep(how many seconds) part 1

9 Sep 2026 1 minute read 0 comments Slash13 $0.03

The for loop is used to iterate over a sequence (list, tuple, string, dictionary,set, range, etc.) or any iterable object. Comment: #Your Comment   Basic Syntax of a for loop for item in iterable:       #code Block   The loop variable (item) takes ea...

Python Basics Tutorial 3 if elif else conditions

6 Sep 2026 1 minute read 0 comments Slash13 $0.01

Python checks the Conditions from Top to Botom As soon as one Condition is true, it runs that Block and skips the rest The else is optional and runs only if none of the previous Conditions were true   How Conditions work: A Condition is any Expressio...

Python Basics Tutorial 2 How to install Python-Librarys with pip

5 Sep 2026 1 minute read 0 comments Slash13 $0.00

Open the Terminal or Console Type in for example: pip install mediapipe  On Mac and Linux if pip dont work use pip3 install mediapipe Mediapipe With mediapipe you can build Augmented Reality Applications and more.

Python Basics Tutorial 1 Output , Input & Variables

5 Sep 2026 1 minute read 0 comments Slash13 $0.03

Hey Ya Folks, Wellcome to my Python Tutorial.   Download Python on https://www.python.org/ and install it. Now you a ready to start programming with Python.   With Output you can show Text in the Console Output: print('Hello World') Variables can con...

Python 3.13 Videorecording

10 Oct 2024 1 minute read 0 comments Slash13 $0.00

Videorecording Alternativ Downloadlink     Made a small Pythonapplication to record Videodata from camera.  You need the Videowindow in Foreground to quit.

Python 3.12 Speech to text or Speech to Cyberspeech or both

26 Sep 2024 1 minute read 0 comments Slash13 $0.00

Dropboxlink: Cyberding   Bittorrentlink: Cyberding   Speech Recognition included. Speak your text you want to create a file, after giving the file an name and push the button of your choice.

Python 3.12 Tkinter_GUI

25 Sep 2024 1 minute read 0 comments Slash13 $0.00

Dropbox_Download Tkinter_GUI Bittorrent Download Tkinter_GUI

Python 3.12 Speech to cyberspeech

24 Sep 2024 1 minute read 0 comments Slash13 $0.00

Dropbox Speech_To_Cyberspeech Bittorrent  Speech_To_Cyberspeech

Python 3.12 text to speech and make a sound

23 Sep 2024 1 minute read 0 comments Slash13 $0.02

    Text_to_Speech_File   Text_to_speech_file  alternativ download Don't forget download and install of the librarys.