The kind of search engine that prevents a website from performing in numerous top positions in Gugle analytics.
Ggle Analytics is a kind of search engine that will help you to know about the trend or the word that most people in the world discuss or search on the internet. When you create an article then you want this article to appear in the top position in their search result can use gugle Analytics. Ggle Analytics may be defined as a web analytics service that tracks and reports website traffic, currently as a platform inside the Ggle Marketing Platform brand. The web is often used by marketers to promote their products. But even though it can help you to promote your product, it takes a long time and it's not effective when your product is new and not all people are familiar with your product.
Learn more about ggle analytics at brainly.com/question/14281452
#SPJ4
Answer:
1) my_family.py
family = ('Dad', 'Mom', 'Agnes', 'David', 'Chris', 'Millie')
for name in range(len(family)):
print(family[name])
2) work_list.py
my_number = [2, 6, 3, 1, 8, 4]
# add items at the end of the list.
my_number.append(0)
my_number.append(5)
# sorts the list, default - ascending.
my_number.sort()
size = 0
while size < len(my_number):
print(my_number[size])
size += 1
Explanation:
The tuple and list data structures are ordered, using indexes to locate items in its container.
The family.py file uses the for-loop to iterate and print the family names in the tuple.
The work-list.py file contains a list of integers which is modified by adding items at the end of the list with the append method and a prints all the items using a while-loop.