a = 'Hyd is green city' # There are 3 spaces between the words print(a . split()) # ['Hyd','is','green','city'] print(a . split(' ')) # ['Hyd is green city'] print(a ...
a = 'Hyd is green city' # There are 3 spaces between the words print(a . split()) # ['Hyd','is','green','city'] print(a . split(' ')) # ['Hyd','','','is','','','green ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results