Answer:
1. In a year
2. Gross Domestic Product
3. government
Explanation:
1. The methods of macroeconomic measurement usually cover periods of a year (GDP, Power Purchasing Parity).
2. GDP means Gross Domestic Product, all the good and services produced by an economy in one year.
3. Governments usually buy road building and military equipment; building infrastructure and purchases of military materiel for an army are government jobs, not the job of private companies.
Answer: Anabaptists believe that baptism is valid only when candidates confess their faith in Christ and want to be baptized. This believer's baptism is opposed to baptism of infants, who are not able to make a conscious decision to be baptized. ... The name Anabaptist means "one who baptizes again".
Explanation:
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: