I need to match the following string File system full. The problem is Starting F can be lowercase or capital. How can I do this in Python when string comparisons are usually case-sensitive?
I need to match the following string File system full . The problem is
Share
I’ll be providing boolean indicators for you to play around with (rather than actual
ifblocks for the sake of conciseness.Using Regex:
if the string could be anywhere in your output (I assume string)
Other options:
checking for ‘f’ and ‘F’
And there’s the previously suggested
lowermethod: