The answer is administrative tools
<span>The domain in an email message tells you the location of the
destination. A domain is a part of an e-mail address after @. Let us say,
[email protected], aol.com is the domain. Therefore, the answer is letter B.
location of the destination, and as for the case of the given example above,
aol.com is called the location of the destination.
Other examples of domain that we commonly came across with:
[email protected]
gmail.com
[email protected]
yahoo.com
[email protected] msn.com
</span>
Answer:
Here you go, Change it however you'd like :)
Explanation:
import random as r
def play_round(p1, p2):
cards = [1,2,3,4,5,6,7,8,9,10,"J","Q","K","A"]
play1 = r.choice(cards)
play2 = r.choice(cards)
while play1 == play2:
play1 = r.choice(cards)
play2 = r.choice(cards)
if cards.index(play1) > cards.index(play2):
return f"{p1}'s Card: {play1}\n{p2}'s Card: {play2}\nThe Winner is {p1}"
else:
return f"{p1}'s Card: {play1}\n{p2}'s Card: {play2}\nThe Winner is {p2}"
print(play_round("Bob","Joe"))
I’m confused what are you trying to ask? What is the python?