Answer:
d, brainly wants this to be long so hdjddjd
Tasklist would be the answer.
(:
When the save button on the quick access toolbar changes to a circular set of two arrows, it means that workbook is saved in the cloud (It means word is automatically syncing your changes back to OneDrive).
- The Quick Access Toolbar (QAT) is simply known as small modifiable toolbar. It is often located at the top of the office application window that is, it can be seen next to the Microsoft Office button. It is known to have its own set of independent commands and render quick access to commands like Save, Undo, Redo, etc.
-
OneDrive is a renown Microsoft cloud service and a type of cloud services that helps individuals to link up oneself to all our files. It allows storage and protection of files, sharing and get to them any time.
Conclusively, we can say that When the save button on the quick access toolbar changes to a circular set of two arrows, it means that workbook is saved in the cloud (It means word is automatically syncing your changes back to OneDrive).
Learn more from:
brainly.com/question/17163678
Answer:
here!!
Explanation:
# Write code here...
def max_int_in_list(my_list):
highest = my_list[4]
for num in my_list:
if num > highest:
highest = num
return highest
my_list = [5, 2, -5, 10, 23, -21]
biggest_int = max_int_in_list(my_list)
print biggest_int
Answer:
see explaination
Explanation:
# python code filereader.py
import sys
import readline
from sys import stdin
import random
## Open the file with read only permit
f = open('inputfile.txt')
## Read the first line
sum = 0.0
count = 0
#read file till the file is empty
while True:
line = f.readline()
if ("" == line):
print "Average age of friends is", sum/count
break
list = line.split()
print "My friend ",list[0], " is", list[1]
sum = sum + int(list[1])
count = count + 1
f.close()
'''
inputfile.txt
Denny 24
Penny 28
Lenny 20
Jenny 24
output:
My friend Denny is 24
My friend Penny is 28
My friend Lenny is 20
My friend Jenny is 24
Average age of friends is 24.0
see screenshot at attachment