- 1
Fill in the blanks to declare a variable, add 5 to it and print its value. >>> x = 4 >>> x + = 5 >>> print
answer should be 9 as assign operators lets say c += a c = c+a but they said answer is wrong
1 Antwort
0
print x
answer should be 9 as assign operators lets say c += a c = c+a but they said answer is wrong