Answer:
It means that it matches a to z in lowercase, 0 to 9 in digits and \ - in characters.
Explanation:
As In regular expressions such as [a-z] means that it will match between a to z in lower case.
In [0-9] means it will search from 0 to 9 in digits.
so
<em>[a-z0-9] means that it will match all from a to z in lowercase and 0 to 9 in digits.</em>
Answer:
message = "i hate cheese and"
message += " fries"
print(message)
Explanation:
Whenever you do string concatenation, which is just combining strings, it doesn't put a space in between the items you're joining together, it does exactly what you tell it to do, so to add a space between the two pieces of text you would have to do the following:
```
message = "i hate cheese and"
message += " fries"
print(message)
```
Don't copy the ```, I just put that to indicate anything in between is code
Anyways notice the space I put before fries? That should also add a space in the message so there is a space between "and" and "fries"
Answer: Computer solves the order of coins the way its programmed to while you solve the order of coins the way you want.