Posts

Showing posts from October, 2025

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