Posts

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) ------------> (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 ) (2) Koolac's video -->  The Most Complete Tutorial on Python Lists (2)  Patrick Loeber's Written material for his Learn Lists video (3) Google search results for Written tutorials about python lists (4) Ghost -- Python Lists Tutorial with real Exa...

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