Answer:
List1=[['Physics','Quantum Physics','Theory of Relativity'],['Geometry', 'Plane Geometry', 'Coordinate Geometry']]
i=0
k=0
for i in range(0,2):
print("Category:"+List1[i][0])
for k in range(1,3):
print("\t"+List1[i][k])
Explanation:
The program required is mentioned above. And it has limitations, but is good enough to explain the fundamentals required.
Answer:
A
Explanation:
Preschool teachers show education
Answer Explanation:
Business intelligence is defined as the strategies and technologies used by companies for the data analysis of business information it tell us also about predictive views of business operation.
THE MOST CONSISTENT ITEMS REGARDLESS OF SOFTWARE USED IN BI ARE :
- data analyst has the most responsibility of BI he is the most important part of BI
- It is the interconnected process of inspection changing and modeling
- data analysis is hugely aided by data mining
Copyright protection lasts the artist’s life and +70 years but if it was made from 1922-1978 it lasts 95 years form the date of publication
Answer:
The expression on line 9 required 2 brackets
Explanation:
Given
The attached code
Required
Why syntax error.
The error points to line 10, but the error is actually from line 9
To get an integer input, the syntax is:
variable-name = int(input("Prompt"))
From the attached code, the line 9 is:
amount = int(input("Enter cheese order weight: ")
By comparing the syntax to the actual code on line 9, only 1 of the brackets is closed.
<em>This, in Python 3 is a sytax error</em>