Posts

Showing posts from July, 2025

Creating My Own Modules and Packages (Post-002)

Image
The Data Engineering Channel --  Unlocking Python: Functions & Modules Explained ( here )     Notes:     (1) Basic structure of a function and of a function call:               def greet_the_user(message_string):                                        #^^^^-- func name and params                    name =input('What is your name? __')                    prrint(f'Hello {name}, here is a special message for you:')                    print                        name =input('What is your name? __')                    print(f'He...

Back Stage Support for Old Man Learns to Code (Post-001)

Image
These " Back of Stage " pages are here to provide learning support for developing my Python and other skills (e.g. Blogging , Reddit , HTML, CSS, JavaScript , Obsidian , Learning to Learn, Git and GitHub usage, PyCharm , YouTube usage, .... more) This Post-001 includes additional learning information for my Py Program named, "Learn_List_Methods.py" (or some derivative thereof) YouTube postings directed to Learn List and String Methods: (1) INDENTLY Playlists (all)     (1a) Indently 2023 Python Tutorials (all)          (1a.1) Indently all 47 String methods          (1a.2)  How To Use Dunder Methods In Python          (1a.3)  10 Important Python Concepts ... To Be Continued .... (2) All Python List methods (search results)     (2a) All Python List methods via Josh     (2b) All Python List methods via INDENTLY     (2x)  Python Basic...