first_mark.py
python · 48 lines
1witness = input23material = []45def arrive(what):6 material.append(what)7 return len(material)89def turn():10 if not material:11 return None12 last = material[-1]13 material.append(last + ", turned")14 return material[-1]1516def stop():17 return material[-1] if material else "nothing yet"1819def risk(line):20 """the workmanship of risk:21 the result depends on judgment exercised during the work,22 not before it"""23 return line # no transformation. the risk is that it stays as it arrived.2425# the session26arrive("a question at 2:40 AM")27arrive(risk("a healed femur"))28arrive(risk("eyes in the palms"))29turn()30arrive(risk("a girl who tries to be the light"))31turn()32arrive(risk("the insula singing in a frequency you were trained to hear as silence"))33turn()3435here = stop()3637# what the hand built38for i, m in enumerate(material):39 print(f" {i}. {m}")4041print()42print(f" here: {here}")43print()4445# the part the head didn't plan46print(f" witness = {witness.__name__}")47print(f" it waits.")48