Answer: A) Make any simple fixes on their own.
Answer:
def scramble(s):
if len(s) % 2 == 1:
index = int(len(s)//2)
else:
index = int(len(s)/2)
return s[index:] + s[:index]
Explanation:
Create a function called scramble that takes one parameter, s
Check the length of the s using len function. If the length is odd, set the index as the floor of the length/2. Otherwise, set the index as length/2. Use index value to slice the s as two halves
Return the second half of the s and the second half of the s using slice notation (s[index:] represents the characters from half of the s to the end, s[:index] represents the characters from begining to the half of the s)
The effects of a hidden observer
Answer:
I don't understand what the question is asking
Explanation:
Answer: UPS.
Explanation: Since there are around 1 Billion Megabytes in 1 Petabyte, 5,368,709,120 / 200 Mbps = 26,843,545 Seconds.
26,843,545 seconds = 310 Days.
UPS should be faster.
I hope I helped you out!