Answer:
- Auto fill a software function that automatically completes data (like the data that has been entered previously) without the user needing to type it in full.
- The Fill Handle is a feature in Excel that fills the data automatically with a specific pattern in your spreadsheet cell.
hope u liked the answer :)
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.