联系方式

  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-23:00
  • 微信:codinghelp

您当前位置:首页 >> Python编程Python编程

日期:2021-04-12 10:51

CSC1001: Introduction to Computer Science

Programming Methodology

Assignment 3

Assignment description:

This assignment will be worth 9% of the final grade.

You should write your code for each question in a .py file (please name it using the

question name, e.g. q1.py). Please pack all your .py files into a single .zip file, name it using

your student ID (e.g. if your student ID is 123456, then the file should be named as

123456.zip), and then submit the .zip file via BlackBoard.

Please also write a text file, which provide the details. (Note that the report should be

submitted as PDF) The report should be included in the .zip file as well.

Please note that, the teaching assistant may ask you to explain the meaning of your

program, to ensure that the codes are indeed written by yourself. Plagiarism will not be

tolerated. We may check your code using Blackboard.

This assignment is due on 5:00PM, 23 Apr (Friday). For each day of late submission, you

will lose 10% of your mark in this assignment. If you submit more than three days later

than the deadline, you will receive zero in this assignment.

Question 1 (20% of this assignment):

Write a Python class, Flower, that has three instance variables of type str, int, and float,

that respectively represent the name of the flower, its number of petals, and its price.

(This will be the input order.) Your class must include an initializer that initializes each

variable to an appropriate value, and your class should include methods for setting the

value of each type, and retrieving the value of each type. Your program should be robust

enough to handle possible inappropriate inputs.

Question 2 (40% of this assignment):

Write a Python class that inputs a polynomial in standard algebraic notation and outputs

the first derivative of that polynomial. Both the inputted polynomial and its derivative

should be represented as strings.

For example, when the inputted polynomial is , the output of

your program should be .

Note: (1) The inputted polynomial will contain only one variable, and the variable is not

necessarily ‘x’; (2) In the inputted polynomial, the terms are not necessarily arranged in

descending or ascending orders.

Question 3 (40% of this assignment):

Write a Python class to simulate an ecosystem containing two types of creatures, bears

and fish. The ecosystem consists of a river, which is modeled as a relatively large list.

Each element of the list should be a Bear object, a Fish object, or None. In each time

step, based on a random process, each animal either attempts to move into an adjacent

list location or stay where it is. If two animals of the same type are about to collide in the

same cell, then they stay where they are, but they create a new instance of that type of

animal, which is placed in a random empty (i.e., previously None) location in the list. If a

bear and a fish collide, however, then the fish dies (i.e., it disappears).

Write an initializer for the ecosystem class, the initializer should allow the user to assign

the initial values of the river length, the number of fishes and the number of bears.

Before the simulation, fishes and bears should be allocated randomly into the river. The

ecosystem class should also contain a simulation() method, which will simulate the next

N steps of the random moving process. N should be inputted by the user. In each step of

your simulation, all animals in the river should try to take some random moves. In each

step of your simulation, the animals should take actions one by one. The animals on the

left will take actions first. (The input order: river length, fishes, bears and setps.)

For example, assume that before the simulation, the initial state of the river is:

In which, ‘F’, ‘B’ and ‘N’ denote fish, bear and empty location respectively. Assume that

in the first step of simulation, the first fish will move to the left, the first bear will move

to the right, and the second bear will remain still. Then after the first step, the state of

the river is:

To generate random numbers in Python, you should import the random() function by using

the following statement:

By assigning the return of the random() function to a variable, you will get a random

floating point number in the range of [0, 1]. The following code is an example of using the

random() function:


版权所有:留学生编程辅导网 2020 All Rights Reserved 联系方式:QQ:99515681 微信:codinghelp 电子信箱:99515681@qq.com
免责声明:本站部分内容从网络整理而来,只供参考!如有版权问题可联系本站删除。 站长地图

python代写
微信客服:codinghelp