A system administrator is tracking the servers that are curr…

A system administrator is tracking the servers that are currently online. One more server has come online, and two others are coming online together. The following code has already been run. Do not retype it in your answer. servers = [‘web01’, ‘web02’, ‘db01’, ‘cache01’, ‘db02’] mail_server = ‘mail01’ new_servers = [‘web03’, ‘db03’] Write code that: Adds mail_server and then new_servers to servers, so that servers becomes a single list of server names exactly matching the list below: [‘web01’, ‘web02’, ‘db01’, ‘cache01’, ‘db02’, ‘mail01’, ‘web03’, ‘db03’] Prints the new complete list of servers