Answer:
I think its A canned air
Explanation:
because i was in computer last year and finished with a 97 i hope this helps
Earth moves around the sun in an elliptical orbit.
Answer:
Evaluate source credibility
Explanation:
cuz it is
If fhun gftrfjjtcbjjbsufcghtfghyrssfbkoire crazy ahh young man
Answer:
Explanation:
def octal_to_string(octal):
result = ''
value_letters = [(4, 'r'), (2, 'w'), (1, 'x')]
for c in [int(n) for n in str(octal)]:
for value, letter in value_letters:
if c >= value:
result += letter
c -= value
else:
result += '-'
return result
print(octal_to_string(755))
print(octal_to_string(644))
print(octal_to_string(750))
print(octal_to_string(600))
**************************************************