Help for this page

Select Code to Download


  1. or download this
    "Dear $name"
    
  2. or download this
    "Dear %s" % expr          # Python % printf-like operator
    "Dear {0}".format(expr)   # Python format string method
    "Dear "+`expr`            # Python backticks (TIMTOWTDI)
    
  3. or download this
    "Take"if n else"Go to"
    (n>0)*"Take"or"Go to"
    ...
    ("Go to","Take")[n>0]
    n and"Take"or"Go to"
    "GToa kteo"[n>0::2]          # "Slice and Dice" wins this golf!