I want to print out two 'print' sentences in one line, what should I do? (I want to print that sentence only once.)
sentence = input("Enter a text.:")
for i in range(len(sentence)-1,-1,-1):
print("Received string :",sentence,"Inverse order of inputted string")
print(sentence[i],end='')