- 3
Почему в коде(Hello,), а в резулятете hello без запятой?
3 odpowiedzi
+ 3
Englisg please!
+ 1
In the example word Hello have comma[Hello,], but in result I dont see comma (Hello)
+ 1
This is a list and the comma is to seperate the items in the list. An example:
list = [hello,world]
print(list)
//result: hello world
Printing a list prints out all items in it seperated with a space.
Next time writ your questions in English so everyone can understand you.