+ 1
Why is error?
A=''7'' Print(A)
4 Answers
0
Into this delete quatiton marks
+ 8
#Not in uppercase print()
A = "7"
print(A)
+ 6
Print is not a function. Remember that python is case-sensitive:
Variable my_var â variable My_var
Function Print() doesnât exist. print() functions exists.
Do you understand?
+ 2
Your mistake is in print statement.
In "print" statement all Latter should bhi small because it is keyword.