+ 1
[SOLVED] How to print for loop horizontally without repeating the stringD
Hey guys, My codes: print("~Find and Replace~") word = input("Enter a phrase:") find = input("Enter a letter to find:") rep = input("Enter a letter to replace:") a = "" for a in word: a = a.replace(find,rep) print(a,end=" ") I know i should put the end = " " but when i try to add this : print("New phrase:", a, end=" ") it gave me this answer: New phrase: SNew phrase: qNew phrase: mNew phrase: qNew phrase: nNew phrase: tNew phrase: hNew phrase: q How do i print it horizontal without repeating the "new phrase"? Stucked x_X
3 ответов
+ 6
What Hatsy said. If you want to start your output with "New phrase: ", put your print function
print("New phrase:", end=" ")
before you start your for loop.
+ 4
Is there a problem doing:
res = ""
for a in word:
res += a.replace(find,rep)
print(res)
So that it only prints the processed result once?
+ 1
Oh it works! Thanks a lot Hatsy and David :D