Answers for "python how to match """

2

python pattern match

import re
pattern = re.compile('[a-zA-Z ]+')		# a...z A...Z and space allowed
message = "Weather is nice"
if pattern.match(message).group() == message:
    print("match")
else:
    print("no match")
Posted by: Guest on May-13-2021
1

python match statement

# Only supported 3.10+

# _ is the symbol for wildcard
match value:
  case Case1:
    ...
  case Case2:
    ...
  case (5, _): # if value is some tuple with first element 5
    ...
  case _: # you can implement a fall-through like this
    ...
Posted by: Guest on January-06-2022

Python Answers by Framework

Browse Popular Code Answers by Language