首页 新闻 聚焦 科技 财经 创业 综合 图片 视频

IT界

旗下栏目: 行业 生态 IT界 创新

CSC1001编程设计辅导、Python程序调试

来源:互联网 发布时间:2021-04-15
CSC1001编程设计辅导、Python程序调试
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: 
请加QQ:99515681 或邮箱:99515681@qq.com   WX:codehelp
  免责声明:珠穆朗玛网对于有关本网站的任何内容、信息或广告,不声明或保证其正确性或可靠性,用户自行承担使用网站信息发布内容的真假风险。
责任编辑:珠穆朗玛网