My issue
1st_name = “Code”
print(1st_name)
last_name = “Chef”
print(last_name)
solve the error
My code
# Fix one of the variable names to make the code work
1st_name = "Code"
print(1st_name)
last_name = "Chef"
print(last_name)
Learning course: Learn Python Programming
Problem Link: https://www.codechef.com/learn/course/rcpit-python/RCPITPY04/problems/VAR5