1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Pie
3 years ago
13

Write a statement to add the key Tesla with value USA to car_makers. Modify the car maker of Fiat to Italy. Sample output for th

e given program: Acura made in Japan Fiat made in Italy Tesla made in USA
Computers and Technology
1 answer:
shutvik [7]3 years ago
4 0

Answer:

car_makers = {'Acura':'Japan','Fiat':'Egypt'}

car_makers['Tesla'] = "USA"

car_makers['Fiat'] = "Italy"

print("Acura made in",car_makers['Acura'])

print("Fiat made in",car_makers['Fiat'])

print("Tesla made in",car_makers['Tesla'])

Explanation:

The first line is a define object in the python code, containing two entries of Acura and Fiat and their respective countries.

The python code adds an entry to the object "car maker" using the bracket notation, the tesla car from USA.

The country of the Fiat car is changed from Germany to Italy, using the bracket notation.

The output of the complete object and the individual cars is given.

output of the python code:

{'Acura': 'Japan', 'Fiat': 'Italy', 'Tesla': 'USA'}

Acura made in Japan

Fiat made in Italy

Tesla made in USA.

You might be interested in
Write two separate formulas using different commands that concatenate " john and "smith" together to form " John Smith"
VladimirAG [237]

Answer:

1. =CONCATENATE(" John"," ","Smith")

2. =(" John"&" "&"Smith")

Explanation:

Given

Two separate strings; "John" and "Smith"

Required

2 separate formulas to concatenate both strings to form " John Smith"

There are several ways to concatenate strings in Microsoft Office Excel; one of the methods is using the concatenate function while the another method is using the traditional & operator.

Using the concatenate function, the formula is as follows

=CONCATENATE(" John"," ","Smith")

This function will combine the " John", " " and "Smith" to give a new string " John Smith" (without the quotes).

Using the traditional & operator may be a little bit difficult (and not frequently used) but the formula is as follows;

=(" John"&" "&"Smith")

The result will be the same as (1) above

5 0
3 years ago
What button is used for paragraph alignment on Microsoft 2016?
Margarita [4]
Just click the buttons on the Paragraph tab on Home.
6 0
3 years ago
The _____________________ property controls the text appearing in the title bar on a Windows Form object.
Maslowich

Answer:

The correct answer to the given question is: "Text".

Explanation:

The windows form object is part of the vb.net.The term vb.net is divided into two parts (vb+.net). The term vb stands for visual basic and the .net stands for the network enable technology. It is a language that is not case sensitive. It is an object-oriented programming language like c++, java. It is used for making a wide range of Windows, Web, Mobile, and Office applications. which can be built on the .NET Framework. As we know that vb.net is used for making window applications. when we open windows form there is a two type of form first for the design and second for coding. In the designing page, there is text property. To use this property we display the text into the title bar.

So the correct answer is text.

4 0
3 years ago
Why are all the expert and tutor verified answers wrong???
posledela
They’re right, most of the time the question you ask can confuse them or you may say it incorrect etc.
3 0
2 years ago
Read 2 more answers
Which function returns the least value of a given set of numbers or range of cells?
umka21 [38]

MIN returns the least value of a given set of numbers or range of cells

D. MIN​

<u>Explanation:</u>

In MS-excel there are many inbuilt functions are available. Each function is used to either select cell or series  of cells or return the value to specific value.

ROUND :- These is inbuilt function which returns  round value for selected cell or selected range cell.

=Round(5.6) returns 6.

COUNT: - These are inbuilt function gives count of selected range of cell.

=COUNT (a1-A10)

NOW: - In excel it is inbuilt function it returns date and time of the system

MIN :- In Excel it is inbuilt function give minimum value for selected range of cell . (Least value from range cells)

8 0
3 years ago
Other questions:
  • What are the 5 general terms of the fair use rule
    9·1 answer
  • Your browsing the Internet and realize your browser is not responding which of the following will allow you to immediately exit
    14·2 answers
  • To ease giving access to network resources for employees, you decide there must be an easier way than granting users individual
    9·1 answer
  • A project manager type a document and print it he is using
    14·1 answer
  • DES: Group of answer choices A) is a commonly used symmetric encryption B) algorithm that was developed in the mid-C) 1970s was
    6·1 answer
  • Countries need to engage in trade of natural resources because of distribution in the earth. For instance, countries such as Sau
    9·1 answer
  • ________ of Willa Catha present an unadorned picture oflife on the prairies of the Midwestern United States during the19th centu
    8·1 answer
  • 9. Select the correct answer.
    6·1 answer
  • Writing a function that implements a loop to collect a set amount of data. The function should use the serial object, the record
    9·1 answer
  • Visual Basic: What are arrays, please give an example code.
    8·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!