2

我正在制作一个刽子手程序,我怎样才能在 python 中包含我的艺术而不在每一行上输入 print 是否有像他们有多行注释一样的多行打印?我不介意从文本文件中导入所有图片,无法从文档中弄清楚这一点,感谢您的帮助。

      def visual():
          if count = 1:
              ## shows the hanging ascii art

`

          ***************                                                
          *             *                                                
          *             *                                                
          *             *                                                
          *             *                                                
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
          *                                                              
  ***********************                                                

一错

       ***************                                                
       *             *                                                
       *             *                                                
       *             *                                                
       *           ....                                               
       *           .  ..                                              
       *          ..   .                                              
       *          ..   .                                              
       *           .....                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              

两个错

       ***************                                                
       *             *                                                
       *             *                                                
       *             *                                                
       *           ....                                               
       *           .  ..                                              
       *          ..   .                                              
       *          ..   .                                              
       *           .....                                              
       *             .                                                
       *       .......                                                
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              

`

4

2 回答 2

10

使用'''""" 三引号字符串文字

longstring = """\
You can use multiple lines
and newlines
are preserved
"""

\在开头的三引号之后使用了换行符,以避免必须将第一行放在开头的引号之后。因此,字符串从You(之前没有换行符)开始:

>>> longstring = """\
... You can use multiple lines
... and newlines
... are preserved
... """
>>> print longstring
You can use multiple lines
and newlines
are preserved
于 2012-12-01T14:12:47.867 回答
1

“like they can have multi-line comments”:没有多行注释,只有多行字符串,当然你也可以打印出来:

wrong_art[2] = """
       ***************                                                
       *             *                                                
       *             *                                                
       *             *                                                
       *           ....                                               
       *           .  ..                                              
       *          ..   .                                              
       *          ..   .                                              
       *           .....                                              
       *             .                                                
       *       .......                                                
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                                                              
       *                  
"""

print wrong_art[num_wrong]
于 2012-12-01T14:13:43.733 回答