代做CS 120 (Summer 25): Introduction to Computer Programming II Short/Long Project #8代写Python编程

CS 120 (Summer 25): Introduction to Computer Programming II

Short/Long Project #8

short problem due at 7pm, Thu 31 Jul 2025

long problem due at 7pm, Tue 5 Aug 2025

1    Restrictions

Do not use any of the following Python features in your code:

●  import of libraries (except if explicitly allowed)

● List comprehensions

●  Generators

● Type annotations

● with  open - Explicitly open and close the file instead

● Ternary operator

● Lambda expressions

● Nested functions

●  Closures

2    Overview

In this pair of projects, you will be practicing with graphics.

We will be using Ben Dicken’s graphics .py that most have you have used in 110, but I have provided an updated version which has some new features. Please download my new version - since we may be using some of the more advanced features later this semester.

The picture to replicate for the Short problem

3    Short Problem:  Static Picture

In the Short problem, you will be creating two short programs.  Both will be based off of the picture on the previous page.

3.1    Program 1: pipes   static A. py

Write a program, pipes_static_A, which replicates the example picture. While you don’t have to replicate it exactly, you should get pretty close. Your window should be roughly 500x500 pixels in size; don’t make it extremely large, or your TA may not be able to view your window.

This program must organize the code into one or more functions; do not simply fill up main() with hundreds of graphical operations.  I would suggest one of two strategies:

● Tile Functions (easy, but less adaptable long-term)

In this style, you declare a function for each different type of tile - but you pass (x, y) parameters that give the location where the function should draw:

draw_right_down_ninety(win,     0,0)

draw_horizontal              (win,  100,0)

draw_dead_end_right      (win,  200,0)

. . .  etc  . . .

● Parameterized (cool, but harder)

In this style, you declare a function which takes a few parameters, which allow you to draw any tile.  While this function will be harder than the ones I suggested above, you’ll only have to write it once.

draw_tile(win,      0,0,

north=False,  east=True,  south=True,  west=False, add_blue  =  False)

draw_tile(win,  100,0,

north=False,  east=True,  south=False,  west=True, add_blue  =  False)

draw_tile(win,  200,0,

north=False,  east=True,  south=False,  west=False, add_blue  =  False)

. . .  etc  . . .

3.2    Program 2: pipes   static B. py

Write this program second,  after you’ve written the first.  It will be worth fewer points. However, if you’ve organized the first program into functions like I’ve requied, this program should be pretty easy to write.

This program takes the previous program, and introduces randomness.  Each time that you run this program, you will display only one picture; however, each

time that you run this program, this picture should be different because it was generated randomly.

At all times, your window must be (roughly) 500x500 pixels in size (the same as the previous program), and you must draw a 5x5 grid of pipes.  However, in this one, you randomly choose which pipes to draw in each location.

Note that duplicates are allowed; it’s OK if your code sometimes draws the same tile in multiple locations.

If you used my first suggestion and wrote a different function for each type of tile, then your random number generator should simply decide which function to call, for each tile.  (Do you now understand why I said that your functions should have (x, y) parameters that tell you where to draw?)

If you used my second suggestion, you have the option (if you wish) to generate entirely new tiles - simply by using randomness to choose the value for every one of the parameters.

4    Long:  Animated Graphics

In the Long project,  you will either  (roughly)  replicate one of the example animations that I’ve provide, or else come up with something of comparable complexity. Name this program whatever you want.

Feel free to be creative!  Your TA will be grading you on your engagement with the project - that means that you have to write a little bit of non-trivial code.  And of course, if your code doesn’t work - if it can’t even draw to the screen, or it isn’t animated - then you will lose most or all of the points for this project.

On the previous page, and below, I’ve placed snapshots of my two example animations. Watch the video that I post to see them move!

NOTE: Please restrict your window to no larger than 800x800, so that we can be sure that the window will fit on your TA’s screen. 

5    How to Turn in the Graphics Programs

Your graphics programs must be complete programs (not just a function). When the TA runs your program, you should create a graphics window and draw the animation.

Your program must make use of the graphics library that we’ve provided to  draw  the  basic  graphic  elements.    Do  not  add  any  new  features  to  the graphics .py, since your TA will be using the standard one.  However, if you have some good ideas, feel free to share them with me - I might include them in a future version!

If you want to also include a README file  (either a text file or PDF), explaining how to run the program (or any cool features), you may - but you aren’t required to.

6    Appendix:  random

To use random numbers in Python, you must import the random library:

import  random

Then, in your code, you can call functions in the library to ask for random data.   The  most common one we use in this class is  random.randint(a,b) which returns  a random integer in  a range.   Note  that  the  upper  bound  is inclusive, which is the reverse of many other Python ranges.

import  random

x  =  random.randint(-5,10)

#  x might  be  5,  or  -10,  or  any  integer  in-between

7    Appendix: graphics . py

Ben Dicken has created a file, graphics .py, which many of you have used in the past: it gives a slightly-nicer wrapper around a classic Python library, known as tkinter.  Ben’s library encapsulates tkinter in an object, and provides some methods that you can use to draw a scene.

If you’ve used graphics .py before, please download a new copy from me. I’ve added a few features.

7.1    (x, y) Coordinates

As is common in computer graphics, the (0,0) point of the screen is the upper left corner; positive x is going right, and positive y is going down.

7.2    Creating a Window

To create a window, import  graphics, and then call the following function:

win  =  graphics.graphics(width,  height,  window_title)

This is a constructor for an object; save the reference into a variable, becaause all of the calls below are methods on this object.

7.3    win. ellipse(x,y, w,h,  fill)

Used to draw circles and ellipses.  (x,y) is the center of the figure.  (w,h) is the width and height of the figure; to draw a circle, give the same value for both width and height. Since this is the total width and height, it is the diameter of the circle, not the radius.

The fill color is a string; it can be a standard color, such as "black",  "red", "green", etc.  , or it can be an html hex color, like "#ff00ff".

7.4    win. rectangle(x,y, w,h,  fill)

Used to draw rectangles and squares.  (x,y) is the upper-left corner (NOT the center).  (w,h) is the width and height.

The fill color works the same way as ellipse().

7.5    win. line(x1,y1,  x2,y2,  fill, width=3)

Draws a line between two points. The fill color works the same as ellipse().

The width is an optional parmeters.  If you don’t provide it, then it will default to 3.  If you provide it, then you can change the width of the line you are drawing.

7.6    win. triangle(x1,y1,  x2,y2,  x3,y3,  fill)

Draws a filled triangle, connecting the three points.  The fill color works the same way as ellipse().

7.7    win. clear()

Clears the window. Destroys all drawings that you’ve made so far.  (This should be the first thing you do before drawing another frame of the animation!)

7.8    EXAMPLE - Short Project

This program draws a picture exactly  once,  and  then waits forever.   The main() for the two programs in your Short Project will look like this.

import  graphics

def main():

win  =  graphics.graphics(400,400,  "Example")

win.ellipse    (200,200,    50,100,  "red")

win.rectangle(200,200,  100,  50,  "green")

win.mainloop()      #  will  wait  forever,  until  the  window  is  closed

if  __name__  ==  "__main__":

main()

7.9    EXAMPLE - Long Problem

This program draws a picture, waits a fraction of a second, and then clears it and draws another one. Use a main() function like this for your Long Project.

import  graphics

def main():

win  =  graphics.graphics(400,400,  "Example")

position  =  100

while  not  win .is_destroyed():                                 #  will  return  True  when  window  closes

#  update  some  variable,  to  indicate  that  we  are  going  to  draw

#  something  different  than  last  time .

position  +=  1

if  position  >  300:

position  =  100

win .clear()                                                             #  wipe  all  previous  drawings

win.ellipse    (position,200,           50,100,  "red")

win.rectangle(        200,position,  100,  50,  "green")

win .update_frame(20)                                           #  sleep  for  50 milliseconds

if  __name__  ==  "__main__":

main()




热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图