Uncategorized

In VScode, while writing Python code it throws an error “line too long”. But i want to keep the line long without any error. What should i do?


here is the error

# Lists are one of built in data types in python used to store collections of data,
# other 3 are tuple, set and dictionary all with with different qualities and usage.
(the above two line will throw error of line too long.)

thislist = ["apple", "banana", "cherry"]
print(thislist)

I do not want the error while writing a long line.
I want to keep the line long.



Source link

Leave a Reply

Your email address will not be published. Required fields are marked *