Answer:
D. Lifetime
Explanation:
Judges hold their seats until they resign, die, or are removed from office.
The early Roman empire saw Christianity as a sort of cult that was potentially dangerous. Christians practice the idea of only one God and therefore did not participate in certain pagan practices such as the Caesar worship which the Romans viewed as disloyalty to their rulers thus the persecutions against Christians began. At the end of the first century Christianity severed all ties with Judaism and established itself as an independent religion.
Answer:
The treaty was an important diplomatic success for the United States. It resolved territorial disputes between the two countries and granted American ships the right to free navigation of the Mississippi River as well as duty-free transport through the port of New Orleans, then under Spanish control.
Answer:
The user is prompted for input
# the input is assigned to user_tweet
user_tweet = str(input("Enter your tweet here:"))
# if statement to check if LOL is in the user_tweet
if('LOL' in user_tweet):
# If there is LOL in the user_tweet, it display
# LOL means laughing out lous
print("LOL means laughing out loud.")
# if there is no LOL in the user_tweet
# it display "There is no LOL in the tweet
else:
print("There is no LOL in the tweet")
Explanation:
The code is well commented and written in Python.
It prompts the user for tweet, then check if the tweet contains LOL, it there is LOL it displays "LOL means Laughing out loud" else it display "There is no LOL in the tweet".
Explanation: