Posts

Args_List of Parameter Passing Dictionaries (id=1000)

Image
  def study ( *samps , subject = 'String Methods' , sMethod = 'capitalize' , meth_ID= n ): sMethod_ = sMethod + '()' ''' The Args_lst listing of parameter dictionaries Not all functions will need such a registry of parameter transfers However the current "study" function can have a large list of arguments/ parameters by itself and then the inside called function, gen_options_table, will also have a long list Each Parameter Dictionary in the Args_lst list will include at least a first key of type string and named "Calld_by" and whose KV value mate will be another string have the form: "module.func_name.params_id" where module is the name of the module in which the current function resides (e.g. fn, f2, f3, etc.) and func_name is tested to make sure it matches the name of the current function while params_id is a unique number (say, based on date) assigned to the assemblage...

My First Study Notes (3/24/2025)

Image
Below 6 frames came out of one PDF file apparently based on Tech with Tim (TwT)

Brain Boosting Hacks

Image
What are the exercises or other activities for improving LEARNING , sharpening FOCUS , becoming more MINDFUL and otherwise BOOSTING BRAIN POWER ? Below are some links directed to answering these questions (1)  How to Remember Everything | 17 Proven Steps to Boost Memory & Learn Faste r (2)  How to Master ANYTHING in Life | Polymath Guide (3) Anthony Metivier --  How to Study Effectively : 9 POWERFUL Learning Techniques

Learn Lists and Modules --FRAME (000)

Image
WELCOME to MORE TO EXPLORE for FRAME ( 000 ) of Learn Lists and Modules (dot) Py MAKE DEDICATED TIME FOR FOCUSED watching, reading and PRACTICING  the material according to each of the below links to better understand LISTS and other aspects of PYTHON Optional (Recommended for when READING)--> Turn on the MUSIC LISTS   Optional (Recommended for when READING)  Turn on the MUSIC (here by picking 1 of 5)->    ( a ) ( b ) ( c ) ( d ) ( e )  Nostalgia Ave: ( old first notes ) (1) START READING HERE -->   Real Python: Python's list Data Type: A Deep Dive With Examples     (1a) You can also at same time WATCH the Real Python video               Click Here     (1b) Geeks for Geeks Tutorial --->( Here )     (1c) Tech w Tim -- List Comprehensions     (1d)  Tech w Tim  -- Built-in funcs (print() plus)      (1d)  Tech w Tim ...

Mind Mapping the APPEND() method relative to other LIST methods (Post-003)

Image
 Justin Sung's 12-steps of DEEP LEARNING Indently's 11 LIST METHODS list.CLEAR() <---> list.EXTEND(items) <--                                                     Append(one)  Archer Newton --  The Mindmap Method : Learn Anything Python what is a LIST? Python has a great built-in list type named "list". List literals are written within square brackets [ ]. Lists work similarly to strings      -- use the len() function and square brackets [ ] to access data, with the first element at index 0. (See the official  python.org list docs .) List Methods  ( from Google for Developers ) Here are some other common list methods. list. append(elem) -- adds a single element to the end of the list. Common error: does not return the new list, just modifies the original. list. insert (index, elem) -- inserts the element ...

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...