Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~508 People Reached
Favorite Forums
Favorite Tags
Member Avatar for unigrad101

Write a function named centeredSquares() that draws a set of squares of different size around a common center point. centeredSquares() takes four parameters. The first parameter is the length of the side of the first square to draw. The second parameter is the number of squares to draw. The third …

Member Avatar for HiHe
0
116
Member Avatar for unigrad101

Write a function named walkingMan() that simulates a person walking a specified distance, taking steps of varying length. The length of the steps varies at random within a specified range. (Use the function in the Python random module, random.randint(a, b), which returns a random integer N such that a <= …

Member Avatar for slate
0
125
Member Avatar for unigrad101

I would like to create a function using the code below called drawMove which takes 2 parameters (x or 0) and square number. That draws an x or 0 in the numbered boxes on the grid below. Input should be: drawMove(turtle,cellsize,O,6) ---> this should draw a O in the 6th …

Member Avatar for woooee
0
132
Member Avatar for unigrad101

I am trying to create a function which would take a list and be able to count the number of ints floats and str in that list. output should be: list = ['v', 3.0,1, 'etc'] freq = countDataTypes(list) print(freq) [2,1,1] any help would be greatly appreciated so far: [CODE] >>> …

Member Avatar for bumsfeld
0
135