python poetry?

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

    #1

    python poetry?

    I'm working on a book of technology and computer programming humor.

    First, can anybody recommend any other such books? And second is there
    a repository of Python poetry, poems translated into Python, or
    humorous Python pseudo code limericks anywhere? I'm making my way
    through "The Larch," but if there's more elsewhere please point me to
    it.

    I'm looking for the Python equivalent of something like this:



    Thank you all

    rd
    Critically-acclaimed novelist Richard Dooling is the author of five novels, along with two nonfiction works.


  • Bruno Desthuilliers

    #2
    Re: python poetry?

    BartlebyScriven er a écrit :
    I'm working on a book of technology and computer programming humor.
    >
    First, can anybody recommend any other such books?
    You of course alreeady know "Tao of programming" and "BOFH" (aka the
    Bastard Operator From Hell') ?

    Comment

    • BartlebyScrivener

      #3
      Re: python poetry?


      Bruno Desthuilliers wrote:
      You of course already know . . . and "BOFH" (aka the
      Bastard Operator From Hell') ?
      Didn't know this one. It's funny!

      Thanks

      rd

      Comment

      • Fredrik Lundh

        #4
        Re: python poetry?

        BartlebyScriven er wrote:
        First, can anybody recommend any other such books? And second is there
        a repository of Python poetry, poems translated into Python, or
        humorous Python pseudo code limericks anywhere? I'm making my way
        through "The Larch," but if there's more elsewhere please point me to
        it.
        Aroldo Souza-Leite did "Sonnets from Pythia" presentations/workshops at
        EuroPython in 2004 and 2005, but I don't know if he's ever published the
        material. google is your friend.

        </F>

        Comment

        • Michael Spencer

          #5
          Re: python poetry?

          BartlebyScriven er wrote:
          Python pseudo code limericks anywhere?
          I wrote the following in response to Steve Holden's limerick challenge a
          couple of years ago:

          # run me or voice the alphanumeric tokens

          from itertools import repeat
          for feet in [3,3,2,2,3]:
          print " ".join("DA-DA-DUM"
          for dummy in [None]
          for foot in repeat("metric" , feet))


          Michael

          Comment

          • BartlebyScrivener

            #6
            Re: python poetry?

            Michael Spencer wrote:
            I wrote the following in response to Steve Holden's limerick challenge a
            couple of years ago:
            Thanks! I found some of these searching the clp google group.

            rd

            Comment

            Working...