Answer:
Education
Explanation:
Most apps for <u>learning</u> a new language are for educational purposes and are most likely an education type of app.
=(Happy)&(Birthday) this is how it would be formatted
.......................................
Answer:
def SwapMinMax ( myList ):
myList.sort()
myList[0], myList[len(myList)-1] = myList[len(myList)-1], myList[0]
return myList
Explanation:
By sorting the list, you ensure the smallest element will be in the initial position in the list and the largest element will be in the final position of the list.
Using the len method on the list, we can get the length of the list, and we need to subtract 1 to get the maximum element index of the list. Then we simply swap index 0 and the maximum index of the list.
Finally, we return the new sorted list that has swapped the positions of the lowest and highest element values.
Cheers.
Try using cortana, it is usally preloaded on the computer.
Its close the windows start menu.