post contains three assignments
1:monsieur Ibrahim
a reaction paper on one of the following movies Monsieur Ibrahim or Paradise now or kindom of Heaven. pick one and related to Islam religion give different examples in-the movie
2:Use Python 3.6.0 to create a simple tree with apple use turtle
Python 3.6.0
The full turtle reference is available at this official turtle library page: http://docs.python.org/library/turtle.html (Links to an external site.)Links to an external site.
Here are some example
from turtle import * # needed to access the turtle commands
import time
def test():
width(5) # make the turtle pen 5 pixels wide
shape(‘turtle’) # use a turtle shape!
time.sleep(2) # wait a couple of seconds before drawing
forward(100) # turtle goes forward 100 steps
right(90) # turtle turns right 90 degrees
up() # turtle lifts its pen up off of the paper
forward(100) # turtle goes forward 100 steps
down() # turtle puts its pen down on the paper
color("red") # turtle uses red pen
circle(100) # turtle draws circle of radius 100
color("blue") # turtle changes to blue pen
forward(50) # turtle moves forward 50 steps
# remember to end with mainloop() – for example,
# test(); mainloop()
3:Tuskegee Syphilis Study
Involuntary sterilization and also the Tuskegee Syphilis Study both of these cases and discuss the issues as you believe them to be Some ideas for discussion in case you are not sure of what to think about:
What experimental safeguards do we have now to avoid these situations?
If we applied our 7 step decision making process to these situations, what would have been the outcome? (A copy of the 7 step decision making process is in the course materials)
Was or will the restitution (the compensation) be enough for the injuries suffered?
apple use turtle