Ascii Art

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shing
    New Member
    • Mar 2007
    • 58

    #1

    Ascii Art

    Can anyone here make me an ASCII image for these 2 words:

    XROBO

    STARTER

    All help appreciated and all help is gracefully excepted (even if its bad)













    -----------------------------------------------------------------------------------------------------------
    Vengeance is a virtue and typing is a form of art.
  • bartonc
    Recognized Expert Expert
    • Sep 2006
    • 6478

    #2
    Originally posted by shing
    Can anyone here make me an ASCII image for these 2 words:

    XROBO

    STARTER
    I'm not sure what you are talking about... Do you mean something like
    Code:
    X   X
     X X
      X
     X X
    X   X
    ?

    Comment

    • shing
      New Member
      • Mar 2007
      • 58

      #3
      yeh stuff like that

      Comment

      • bartonc
        Recognized Expert Expert
        • Sep 2006
        • 6478

        #4
        Originally posted by shing
        yeh stuff like that
        I'm afraid that you'll have to make a start and post some code.

        Comment

        • bartonc
          Recognized Expert Expert
          • Sep 2006
          • 6478

          #5
          Originally posted by bartonc
          I'm afraid that you'll have to make a start and post some code.
          Here's a little something to get you going:
          Code:
          >>> lineList = [\
          ... "X    X",
          ... " X  X ",
          ... "   X  ",
          ... ]
          ... 
          >>> for line in lineList:
          ...     print line
          ...     
          X    X
           X  X 
             X

          Comment

          • shing
            New Member
            • Mar 2007
            • 58

            #6
            Originally posted by bartonc
            Here's a little something to get you going:
            Code:
            >>> lineList = [\
            ... "X    X",
            ... " X  X ",
            ... "   X  ",
            ... ]
            ... 
            >>> for line in lineList:
            ...     print line
            ...     
            X    X
             X  X 
               X

            oh no no, that's not what i meant, i was thinking this:

            that someone on this forum could just type up so ASCII art and i'd copy and paste it into the program with print " ".

            Not the actual code...You misinterpreted me.

            Comment

            Working...