- 6
Python test
Fill in the blanks to declare a variable add5. x=2,x( )=5,print( ). How to do?
6 odpowiedzi
+ 2
This kind of posts are better as submission in quiz factory.
+ 1
Thank you very much, BlazingMagpie!
0
I think it's already in a quiz or somewhere else on SoloLearn. This is second time I've seen this question.
0
In a dart game, you hit 5 points once, ~10 points 2 times, 20 points 2 times. ~What is the average number of ~points you hit per attempt?
0
add one more =
- 1
x=2
x+=5
print(x)
Does this work?