Answer:
Putare
Explanation:
I took latin last year! Merry Christmas and hope this helps
THIS IS FOR PYTHON
total = 0
for i in range(7, 35):
total += i
print(i)
print(total)
I forgot the reason but python always stops one number before your desired value. So that's why it's 35
Answer:
D) IaaS
Explanation:
In this scenario, the best cloud service model would be IaaS. This stands for Infrastructure as a service (IaaS) and basically provides all the physical infrastructure that a company needs virtually. The company itself purchases a piece of software that allows them to remotely use all of the infrastructure provided by the service. Meaning they have access to computing power, data centers space, servers, networking, etc. without actually purchasing any of the physical hardware. This would solve all of "your" business needs as asked by the company.
Answer:
convert the input to an integer:
ans = int(input(str(num1)+"+"+str(num2)+"="))
Explanation:
Your code is comparing an integer to a string, which will always return false. If you cast your input to an integer using the int() function, your problem should be solved.