changes in the output (#30099)

['I', 'love', 'Python', 'very much']
instead of double quotes , it should be single quote.
This commit is contained in:
himanshu07070
2019-01-19 06:32:24 +05:30
committed by Tom
parent d6eda38560
commit 308d5db586

View File

@ -15,7 +15,7 @@ print(words)
``` ```
#### Output #### Output
``` ```
["I", "love", "Python", "very much"] ['I', 'love', 'Python', 'very much']
``` ```
As you might have noticed the element `"very much"` is appended to the list. As you might have noticed the element `"very much"` is appended to the list.