gpt4 book ai didi

python - 包括 python 中的 ascii 艺术

转载 作者:行者123 更新时间:2023-11-28 19:50:12 27 4
gpt4 key购买 nike

我正在制作一个刽子手程序,我怎样才能将我的艺术包含在 python 中无需在每一行都输入 print有没有多行打印就像他们有多行评论?我不介意导入所有图片来自文本文件,无法从文档,感谢您的帮助。

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

`

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

错了

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

两个错误

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

`

最佳答案

使用 '''""" triple-quoted string literal :

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

关于python - 包括 python 中的 ascii 艺术,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13660246/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com