Paragraphs are usually separated by blank space.
Hope this is what you were looking for :)
It was way too much of a drawback
That is B False m8 that means mate btw xD please say thank you :P
It effects it until it is refilled to its normal amount
Answer:
There is no difference between ‘’ and “” string type in python. Both are used to hold the string or sequence of character in the python. triple """ """ can also use for the same.
Example:
str1 = "aeiou"
str2 = 'aeiou'
str3 =""" hello"""
print(type(str1), type(str2),type(str3))
<class 'str'> <class 'str'> <class 'str'>
Here all are used to hold string or sequence of character.