Answer:
Here u go... hope it helps u.... have a great day ahead
Answer:
import re
def country_capita():
#opens file
file=open("inputfile.txt", "r")
dictionary=dict()
#reads line by line
for line in file.readlines():
# substitutes for multiple space a single space
line = re.sub(r"[\s]{2, }", ' ', line)
list=[]
#splits line on space
list=line.split(" ")
#put into dictionary
dictionary[list[1]]=list[2]
# get input
while True:
choice=input("Enter the country name or quit to exit: ")
if choice=="quit":
break
elif choice in dictionary.keys():
print(dictionary[choice])
else:
print("Invalid Country")
country_capita()
Explanation:
Using python to code this program. First we, (line 1) import the re module which offers us a set of functions that allows us to search a string for a match. ((line 2) Next we define a function country_capita() that will open rawdata_2004.txt, read the information within line by line and create a dictionary list. The we create a while loop with conditional statements that prompt the user to enter country names, print the corresponding values and stops when the user enters quit.
I think your question is incomplete.
Here is the correct question:
InfoTech Horizons, an IT company, is seeking to hire an experienced IT professional to assist the CIO in his role. The new hire will be groomed to take on the role of the CIO. Which of the candidates, all of whom have good technical skills, will prove to be the best choice
Answer: My answer is that a candidate with good professional knowledge of computer and business will be the ideal candidate.
Explanation:
Answer: DNS Server
Explanation:
DNS server is the server that has the database along with the IP addresses along with names of the host as well in a computer system. So, by accessing the zone file , the person is actually trying to manipulate the host that is present in the DNS server zone. DNS server helps in the execution of the particular software and maintaining the connection using some protocols.
Simulation has a lot to do with computer coding, computer games, etc. Due to the use of how much computers are used in this day and age, simulations can be used even for homeschoolers in whom do school online.