1.
solution
code
output

copyable code
#import the re module
import re
# regular expression
regex = r"([a-zA-Z]+) (\d+)"
matchdata = re.search(regex, "March 1, 2019, Mar 1, 2019, March First, 2019, March First, 19")
if matchdata != None:
# display the month
print "string matches: %s" % (matchdata.group(1))
#does not match the regular expression string
else:
print "The regex pattern does not match."
2.
coding

output

copyable code
import re
#check the valid train process
def isValid_Train(train1):
pattern1 = r'^E+(((P|PP|PPP|PPPP)D)*(BB)*)*C$'
if re.match(pattern1, train1):
return True
return False
#print the reult
def check_Print_Train(train1):
print("Train", train1, "is valid:", isValid_Train(train1))
check_Print_Train("EC")
check_Print_Train("EEEPPDBBPDBBBBC")
check_Print_Train("EEBB")
check_Print_Train("EBBBC")
check_Print_Train("EEPPPPPPDBBC")
check_Print_Train("EEPPBBC")
check_Print_Train("EEBBDC")
Use the Python “re” module to do the following: 1. Write a regular expression pattern that matche...
8.17 python a.) Write a regular expression pattern to match all words ending in s. b.) Write a regular expression pattern to match all words ending in ing. c.) Write a regular expression pattern to match all words with ss anywhere in the string. d.) Write a regular expression pattern to match all words beginning and ending with the letter a. e.) Write a regular expression pattern to match all the words that start with st. f.) Write a regular...
Write a regular expression pattern that matches familial relationships involving a mother, father, son, daughter, and the words Great, grand, and Step. To simplify the problem, we will use just the first letters (case is important) of these words with no spaces between them. The symbol GGgs means great great grandson. Legal: Should Match : m, gf, Ggm, GGgf, Ss,, SGgs, Illegal: Should Not Match: mf, Gm, SSm, GSm,
Preliminaries For this lab you will be working with regular expressions in Python. Various functions for working with regular expressions are available in the re module. Fortunately, Python makes it pretty easy to check if a string matches a particular pattern. At the top of the file we must import the re module: import re Then we can use the search() function to test whether a string matches a pattern. In the example below, the regular expression has been saved...
Write a PHP regular expression pattern that matches a string that satisfies the following description: The string must begin with the (uppercase) letter A. Any three alphanumeric characters must follow. After these, the letter B (uppercase or lowercase) must be repeated one or more times, and the string must end with two digits.
please use python and provide run result, thank you!
click on pic to make it bigger
For this assignment you will have to investigate the use of the Python random library's random generator function, random.randrange(stop), randrange produces a random integer in the range of 0 to stop-1. You will need to import random at the top of your program. You can find this in the text or using the online resources given in the lectures A Slot Machine Simulation Understand...
1. According to the paper, what does lactate dehydrogenase
(LDH) do and what does it allow to happen within the myofiber? (5
points)
2. According to the paper, what is the major disadvantage of
relying on glycolysis during high-intensity exercise? (5
points)
3. Using Figure 1 in the paper, briefly describe the different
sources of ATP production at 50% versus 90% AND explain whether you
believe this depiction of ATP production applies to a Type IIX
myofiber in a human....