0
Spacing between letters
does Python takes note of whitespace unlike c++ or ignores the space till the end of that line. For example- print( " hey ya ")
4 Respostas
+ 8
Whitespace is a valid character and is printed out, taken into account in string's length and so on.
+ 4
No the spacing between print and ( doesn't matter, but the standard in Python is no space.
+ 3
" hey ya "
in either c++ or python is a string and all the whitespace between the quotes would be included with it.
0
if not for strings then ?? like-
print ("hello")