b1 = type(dir(sys)) is str
dir(sys) returns a list of strings, so:
type(dir(sys)) → <class 'list'>
So b1 = False
b2 = type(sys.path[-1]) is str
sys.path is a list of strings
sys.path[-1] is a string
type(sys.path[-1]) → <class 'str'>
So b2 = True
print(b1 and b2)
b1 and b2 → False and True → False
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Abbribas
1 month, 2 weeks agoDKAT2023
1 year, 1 month ago