What event are you learning that took place in 1815? Maybe more detail I could help
Radical evangelists threatened the privilege of the colonial elite. This is because of their role in exposing and taming incompetent ministers. By exposing and attacking the luxurious excesses of the colonial elite, they posed a threat in disrupting the social order.
The Answer is B
... Brazil
Spoons have been around for ages so there is no evidence of who invented it, but it just leads to ancient Egypt
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: