Quickies
[
categories
] [
index
] [
all (553)
] [
latest
]
Python
str.startswith() can accept a tuple of possible matches
s = "asd" s.startswith(('a','b','c'))
True