Saturday, April 12, 2014

Python Commands

A coworker mentioned that programming breaks down to:

  1. input
  2. output
  3. math
  4. conditional logic
  5. repetition
  6. execution

 
 

In Googling I found this which has the following comparable list:

  1. Input
  2. Output
  3. Math and data manipulation
  4. Conditional execution
  5. Repetition

 
 

Yes, this is Python stuff and this is where my coworker found and embraced this breakdown. Conditional logic (the diamond/rhombus in UML) is not in the second list. Hmmm. Conditional execution is conditional logic and execution rolled together??? dunno Another random thought: Python has a concept of pythonic which denotes a good way to write code.

No comments:

Post a Comment