0
Len ('aaa')+len ('+++')+14
what output
3 Antworten
+ 3
You could easily figure out the output of this code by running it in a python code! However the answer is 20 I believe.
+ 3
len ('aaa') = 3
len ('+++') = 3
len('aaa)+len('+++')+14=20
When in doubt, use the code playground.
0
How to come this answer please explain