Answer:
def getChar():
while True:
in1 = input('Enter first char: ')
try:
if len(in1) != 1:
raise
else:
in2 = input('Enter second char: ')
if len(in2) != 1:
raise
else:
break
except:
print('Enter just one character')
return in1, in2
def chars2string(in1,in2):
print(in1*5 + in2*5)
def main():
ls = getChar()
in1 = ls[0]
in2 = ls[1]
chars2string(in1, in2)
if __name__ == '__main__':
main()
Explanation:
The programming language used is python 3.
The script first defines a function getChar and makes use of a while loop in combination with try and except blocks and IF statements, the code ensures that both inputs that are entered by the user after the prompt are 1 in length. i.e. Just one character. This function returns the two characters that were entered.
The second function that is defined is chars2string this function takes two arguments, It repeats each argument five times and returns a joined string.
Finally, the main function is defined and it calls the getChar function first, the values that are returned by this function is assigned to two variables, that is then passed on to the chars2string function. The main function is called and the Joined string is printed to the screen.
Annabelle is indeed a true story making it fiction
The Sorting of the examples of sedimentary processes are:
- Sediment Erosion/transport - The dirt going down the drain after you give your dog a bath and drain the tub Dirt being blown off a patio
- Deposition of sediment - Dust collecting on furniture
- Weathering of rock - Tree roots extending into a rock layer and breaking it down Ice expanding in a crack in the road creating a pothole
- Compaction/lithification - A dump truck dumps a load of gravel on your lawn. The dirt below it becomes more consolidated
<h3>What is the sedimentary process known as?</h3>
Sedimentary rocks are said to be the outcome of
1) The weathering of preexisting rocks,
2) The transport of the weathering products,
3) The deposition of the material.
4) The compaction process.
5) The cementation of the sediment to form a rock.
This is known to be the most vital geological processes that has lead to the making of sedimentary rocks such as due to erosion, weathering, dissolution, and others
Therefore, The Sorting of the examples of sedimentary processes are:
- Sediment Erosion/transport - The dirt going down the drain after you give your dog a bath and drain the tub Dirt being blown off a patio
- Deposition of sediment - Dust collecting on furniture
- Weathering of rock - Tree roots extending into a rock layer and breaking it down Ice expanding in a crack in the road creating a pothole
- Compaction/lithification - A dump truck dumps a load of gravel on your lawn. The dirt below it becomes more consolidated
See full question below
Sort the following everyday examples of sedimentary processes into the bins labeled with the sedimentary processes they most closely represent. Drag the appropriate items into their respective bins View Available Hint(s) Reset Heip A dump truck dumps a load of gravel on your lawn. The dirt below it becomes more consolidated Dirt being blown off a patio Ice expanding in a crack in the road Dust collecting on furniture creating a pothole Tree roots extending into a rock layer you give your dog The dirt going down the drain after a bath and drain the tub and breaking it down Sediment Erosion/transport Deposition of sediment Weathering of rock Compaction/lithification
Learn more about sedimentary processes from
brainly.com/question/13291293
#SPJ1
Answer:
(Shown below)
Explanation:
The email is written as:
boby(at)qengineers.org
The first part of the email adress is the name, which is Boby. (boby(at)qengineers.org)
The second part will always be the (at) sign. (boby(at)qengineers.org)
The third and last part is the company, or where the email is coming from. (boby(at)qengineers.org)
Hope this helps!
(Also please note I put (at) for the at symbol because brainly doesn't let me type it in)
The answer to this question is a network operating system. A
network operating system or NOS is a computer operating system that supports
the computers when it is connected on a local area network and it also helps in
sharing data and information in other computers thru a network.