Print in Reverse Order - 2
This Program name is Print in Reverse Order - 2. Write a Python program to Print in Reverse Order - 2, it has two test cases
The below link contains Print in Reverse Order - 2 question, explanation and test cases
https://drive.google.com/file/d/1KGH3-kyqBUXXMhynX87y3TE8R7pnSGXc/view?usp=sharing
We need exact output when the code was run
s1 = str(input("Enter String-1: "))
s2 = str(input("Enter String-2: "))
print("\n\nOutput:\n")
print(s2)
print("---")
print(s1)
Comments
Leave a comment