Instructions 1. Read 4 integer numbers (use input). 2. Store these values in the list in order of input. 3. Increase the largest number in the list on 5. 3.1. Find the larges number (think about the...


I should use input()


Instructions<br>1. Read 4 integer numbers (use input).<br>2. Store these values in the list in order of input.<br>3. Increase the largest number in the list on 5.<br>3.1. Find the larges number (think about the function that finds maximum value)<br>3.2. Find the index of the largest number.<br>3.3. Increase the value that stored in the list at the index that you find in 3.2. by 5.<br>4. Print all values in the list (it will be the print the list itself)<br>Hint: You can do that in one line or by creating a separate variable to store results 3.1-3.3. Check Chapter 3.2 to find function and list<br>examples.<br>Hint: you can use a variable in indexing, not only a number. Example:<br>1 = [1, 2, 3, 4]<br>i = 2<br>%3D<br>%3D<br>print (1[i])<br>>>> 3<br>Example Input<br>1.<br>

Extracted text: Instructions 1. Read 4 integer numbers (use input). 2. Store these values in the list in order of input. 3. Increase the largest number in the list on 5. 3.1. Find the larges number (think about the function that finds maximum value) 3.2. Find the index of the largest number. 3.3. Increase the value that stored in the list at the index that you find in 3.2. by 5. 4. Print all values in the list (it will be the print the list itself) Hint: You can do that in one line or by creating a separate variable to store results 3.1-3.3. Check Chapter 3.2 to find function and list examples. Hint: you can use a variable in indexing, not only a number. Example: 1 = [1, 2, 3, 4] i = 2 %3D %3D print (1[i]) >>> 3 Example Input 1.
Hint you can use a variable in indexing, not only a number. Example:<br>1 = [1, 2, 3, 4]<br>i = 2<br>print (1[i])<br>>>> 3<br>Example Input<br>2.<br>3<br>Example Output<br>[1, 2, 8, 2]<br>354684.2266598.qx3zqy7<br>2.<br>

Extracted text: Hint you can use a variable in indexing, not only a number. Example: 1 = [1, 2, 3, 4] i = 2 print (1[i]) >>> 3 Example Input 2. 3 Example Output [1, 2, 8, 2] 354684.2266598.qx3zqy7 2.

Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here