gpt4 book ai didi

python - 如何打印没有空格的文本行

转载 作者:太空宇宙 更新时间:2023-11-04 05:42:01 25 4
gpt4 key购买 nike

我正在尝试从用户那里获取两个值并根据用户输入打印一行文本。

char1 = input("Please enter the first character: ")
char2 = input("Please enter the secound character: ")

width = int(input("Please enter the width of the innermost triangle: "))

if width % 2 == 0:
print ("ERROR - number is even")
quit()

print ("")
print (char1*11,char2*1,char1*11)

这是我当前的输出:

YYYYYYYYYYY + YYYYYYYYYYY

我正在尝试不带空格地打印它,以便它看起来像这样:

YYYYYYYYYYY+YYYYYYYYYYY

我该怎么做?

最佳答案

像这样打印你的输出:

print ("{}{}{}".format(char1*11,char2*1,char1*11))

或者如果您使用的是 Python 3,则可以使用 sep:

print (char1*11,char2*1,char1*11, sep="")

在这里阅读更多关于打印的信息:

http://www.python-course.eu/python3_print.php

关于python - 如何打印没有空格的文本行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33599945/

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