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
~321 People Reached
Favorite Forums
Favorite Tags
Member Avatar for nightrev

I am new to JES and I wanted to know how to draw a ball going around in a circle. I already know how use the make movie function. I am just confused on how to make a ball go around in a complete circle. Can anyone please help?

Member Avatar for TrustyTony
0
63
Member Avatar for nightrev

Write a Python function that will take a string of the form “4/11/2010” and print the corresponding date in the form “Apr 11, 2010”. Make use of strings, lists, and appropriate operators/methods. In particular, define a list that contains the month abbreviations so that you can convert without needing any …

Member Avatar for Legnoduro
0
111
Member Avatar for nightrev

I am having trouble writing a program that lists the perfect numbers less than 10,000 in JES. This is what I have so far. Can someone help me? [CODE]def perfect(): print "Perfect Numbers" count = 0 number = 4 while count < 10000: if sumsDivs(number): count = count + 1 …

Member Avatar for woooee
0
147