Computer Science, asked by Anonymous, 2 months ago

In Python string can be collection of characters surrounded by___________Quotes *

1.Single
2.Double
3.Triple
4.All of the above

Need Correct Answer
No Spam❎
​​

Answers

Answered by diamonddevstuff
0

Answer:

the answer is option 4 ,all of the above

str_1 = 'Hello'

str_2 = "Hello"

str_3 = """

Hello

"""

All of the above works

Similar questions