Step 1- Introduction
Step 2-committee consideration
Step 3-committee action
Step 4-Subcommittee Review
Step 5-Mark up
Step 6-committee action- reporting a bill
Step 7-publication of comittee
Step 8-scheduling floor action
Step 9- debate
Step 10-Voting
Step 11-bill refereed to other chambers
Step 12-conference committee
Step 13-final action
Step 14- overriding the veto
Hope this helps :)
Answer:
On Gradpoint it's the one that says something along the lines of "avoiding conflict between southern and northern states"
Explanation:
The most significant element of the Virginia House of Burgesses during colonial times was that it was the first (limited) democratic body in North America--meaning that it was a huge inspiration to the Founding Fathers when it came time to separate from Britain.
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: