Re: Simplify Code

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Michiel Overtoom

    Re: Simplify Code

    Victor wrote...
    ># del is used to determine if should reset the lower header values to ''
    >del = 0
    Apart from many other things that spring to mind, I already see an obvious
    flaw: 'del' is a keyword, or a 'reserved word' in Python. It is used to
    remove variables from the namespace. Tip: Use some other name as a variable,
    eg. 'deletethisone' .

    Greetings,


    --
    "The ability of the OSS process to collect and harness
    the collective IQ of thousands of individuals across
    the Internet is simply amazing." - Vinod Vallopillil


Working...