5 Antworten
+ 3
when something is zero it means it's null so anything multiply by zero is null it's like deleting it
+ 14
str * int returns int times str
"a" * 3 = "aaa"
"ab" * 4 = "abababab"
so 0 * "python" is ""
+ 4
Because multiplication by zero makes everything........nothing🤣
+ 1
You're basically telling it to print 'python' 0 times, and so nothing is printed.
- 10
Idk I never used python