My issue
My code
# Update the '_' in the code below to output the following
# Output: 3 + 4
# Output: 2 + 1
print(3 + 4)
raw_input____(2 + 1)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
# Update the '_' in the code below to output the following
# Output: 3 + 4
# Output: 2 + 1
print(3 + 4)
raw_input____(2 + 1)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
The question is asking you to output 3+4 and 2+1 not take input, please replace your raw_input statement to print.
what do you mean by raw_input_____(3+4)?
they asked you to print something. so use print(operation) .
print(3+4)
print(2+1)