Respuesta :
terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic",
"Reliability"]
def swap(arr, in1, in2):
w = arr[in1]
arr[in1] = arr[in2]
arr[in2] = w
print(terms)
swap(terms, 5, 1)
swap(terms, 2, 4)
swap(terms, 3, 5)
swap(terms, 5, 6)
swap(terms, 6, 8)
swap(terms, 8, 9)
print(terms)
This is how I interpreted the question. If I need to make any changes, I'll do my best. Hope this helps though.
The program is an illustration of lists and list manipulation
Lists
Lists are variables that are used to hold multiple values in one variable name
Python Program
The program in Python, where comments are used to explain each line is as follows:
#This defines the swap function
def swap(arr, pos1, pos2):
myList = arr[pos1]
arr[pos1] = arr[pos2]
arr[pos2] = myList
#This initializes the list
terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic", "Reliability"]
#This prints the list elements
print(terms)
#This swaps the second and the sixth list elements
swap(terms, 5, 1)
#This swaps the third and the fifth list elements
swap(terms, 2, 4)
#This swaps the fourth and the sixth list elements
swap(terms, 3, 5)
#This swaps the sixth and the seventh list elements
swap(terms, 5, 6)
#This swaps the seventh and the ninth list elements
swap(terms, 6, 8)
#This swaps the ninth and the tenth list elements
swap(terms, 8, 9)
#This prints the list elements
print(terms)
Read more about lists and list manipulations at:
https://brainly.com/question/24941798