Answer:
Time =t2=58.4 h
Explanation:
Since temperature is the same hence using condition
x^2/Dt=constant
where t is the time as temperature so D also remains constant
hence
x^2/t=constant
2.3^2/11=5.3^2/t2
time=t^2=58.4 h
It is habahi Yw with yuuuuuy I am a little more confused about
Answer:
Complete question is:
write the following decorators and apply them to a single function (applying multiple decorators to a single function):
1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”
2. The decorator will return the wrapper per usual.
3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.
4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.
5. Apply both decorators (by @ operator to greetings()).
6. Invoke the greetings() function and capture the result.
Code :
def strong_decorator(func):
def func_wrapper(name):
return "<strong>{0}</strong>".format(func(name))
return func_wrapper
def em_decorator(func):
def func_wrapper(name):
return "<em>{0}</em>".format(func(name))
return func_wrapper
@strong_decorator
@em_decorator
def Greetings(name):
return "{0}".format(name)
print(Greetings("Hello"))
Explanation:
Answer:
wheeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
Answer:
She believes he's weak and won't do what needs to be done to become a king.
Explanation:
She says ('I fear thy nature') and calls him 'too full o' th' milk of human kindness' which reflects that she feels his kindness makes him weak and may prevent him from proceeding the plan. Thus, she manipulates him to keep his kindness aside and do what she wishes him to do. She rather belittles him to get her purpose solved and