fork download
  1. rule0 = "All submitted content must be related to programming or programmers."
  2. trial_addendum = ", or the title of the submission must substantially enhance"\
  3. " the content such that it can stand on its own as an analogy"\
  4. " to programming or programmers."
  5.  
  6. # other rules omitted, this is only an example
  7. rule = [rule0]
  8.  
  9. # finally, we arrive at the title
  10. rule[0] = rule[0][:-1] + trial_addendum
  11.  
  12. print rule[0]
Success #stdin #stdout 0.01s 7692KB
stdin
Standard input is empty
stdout
All submitted content must be related to programming or programmers, or the title of the submission must substantially enhance the content such that it can stand on its own as an analogy to programming or programmers.