提问人:jonathan 提问时间:7/1/2023 最后编辑:Markjonathan 更新时间:7/1/2023 访问量:223
有没有办法将 sep=“” 函数与输入的字符串一起使用
Is there a way to use the sep="" function with an inputed string
问:
我一直在尝试将分隔符函数与使用输入函数的消息一起使用,但似乎分隔符函数不起作用,它只打印出输入的短语。例如。我使用 sep=“...”并希望我输入的短语打印出“这......是。。。我。。。已输入...短语“,但我收到的是”这是我输入的短语”。
# Asking for user to input any phrase or word they want
user_phrase = input('What is the phrase you want to print?')
# using the seperator function to seperate the inputed phrase by the desired users choice of string.
print(user_phrase, sep='...')
答:
0赞
Mark
7/1/2023
#1
当您将多个参数传入如下所示时,将使用该参数:sep
print()
print("some string", "some other string", sep="...")
# some string...some other string
要获得所需的输出,您需要将单个字符串转换为多个字符串。 会这样做。然后,您需要将它们转换为单独的参数。你可以像这样做:split()
print()
s = "This is my inputed phrase"
print(*s.split(), sep='...')
# This...is...my...inputed...phrase
评论