My issue
My code
# Replace the _ (underscores) in the code below
S=("Abcd")
print(S)
Learning course: Solve Programming problems using Python
Problem Link: CodeChef: Practical coding for everyone
# Replace the _ (underscores) in the code below
S=("Abcd")
print(S)
Learning course: Solve Programming problems using Python
Problem Link: CodeChef: Practical coding for everyone
The problem wants you to take an input as string and print the said string, which should have been done by input keyword.
You should not just copy the example as the program is checked on a variety of test cases.
You can refer to the code below for a better understanding.
# Replace the _ (underscores) in the code below
S = input()
print(S)