Part 2. fill Method Define a method in simpy named fill. Its purpose is to fill a simpy's values with a specific number of repeating values. The fill metho will have two parameters following self: 1. The float value you are filling the values list in with. 2. The int number of values to fill in. The fill method is procedure-like in that it returns None and mutates the object the method is called on. After calling fill, the length of t Simpy object's values should be equal to the second argument given to fill. For example, consider the following usage and expected printed output, given inline, below: twos = Simpy([]) twos.fill(2.0, 3) print("Actual: ", twos, " - Expected: Simpy([2.0, 2.0, 2.0])") twos.fill(2.0, 5) print("Actual: ", twos, - Expected: Simpy([2.0, 2.0, 2.0, 2.0, 2.0])") mixed = Simpy([]) mixed.fill(3.0, 3) print("Actual: ", mixed, mixed.fill(2.0, 2) Expected: Simpy([3.0, 3.0, 3.0])") print("Actual: ", mixed, Expected: Simpy ([2.0, 2.0])") Pytho

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter7: Using Methods
Section: Chapter Questions
Problem 9RQ
icon
Related questions
Question
100%
Part 2. fill Method
Define a method in simpy named fill. Its purpose is to fill a simpy's values with a specific number of repeating values. The fill method
will have two parameters following self:
1. The float value you are filling the values list in with.
2. The int number of values to fill in.
The fill method is procedure-like in that it returns None and mutates the object the method is called on. After calling fill, the length of the
Simpy object's values should be equal to the second argument given to fill.
For example, consider the following usage and expected printed output, given inline, below:
twos = Simpy([])
twos.fill(2.0, 3)
print("Actual: ", twos,
Expected: Simpy([2.0, 2.0, 2.0])")
twos.fill(2.0, 5)
print("Actual: ", twos,
" - Expected: Simpy([2.0, 2.0, 2.0, 2.0, 2.0])")
mixed = Simpy([])
mixed.fill(3.0, 3)
- Expected: Simpy([3.0, 3.0, 3.0])")
print("Actual: ", mixed,
mixed.fill(2.0, 2)
print("Actual:
", mixed,
Expected: Simpy ([2.0, 2.0])")
Python
Transcribed Image Text:Part 2. fill Method Define a method in simpy named fill. Its purpose is to fill a simpy's values with a specific number of repeating values. The fill method will have two parameters following self: 1. The float value you are filling the values list in with. 2. The int number of values to fill in. The fill method is procedure-like in that it returns None and mutates the object the method is called on. After calling fill, the length of the Simpy object's values should be equal to the second argument given to fill. For example, consider the following usage and expected printed output, given inline, below: twos = Simpy([]) twos.fill(2.0, 3) print("Actual: ", twos, Expected: Simpy([2.0, 2.0, 2.0])") twos.fill(2.0, 5) print("Actual: ", twos, " - Expected: Simpy([2.0, 2.0, 2.0, 2.0, 2.0])") mixed = Simpy([]) mixed.fill(3.0, 3) - Expected: Simpy([3.0, 3.0, 3.0])") print("Actual: ", mixed, mixed.fill(2.0, 2) print("Actual: ", mixed, Expected: Simpy ([2.0, 2.0])") Python
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Unreferenced Objects
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT