QZ – Hot

Posted in Uncategorized | Leave a comment

K5 – Hot

Posted in Uncategorized | Leave a comment

K6 – Python

Plot the area under a curve with Python

#!/usr/bin/python3
from matplotlib import pyplot as plt
import numpy as np
x=np.arange(1,31)
y= x * x
plt.fill_between(x,y,color='blue', alpha=0.5)
plt.show()

Posted in Uncategorized | Leave a comment

1B – LGBTQ

Posted in Uncategorized | Leave a comment

1A – GEM

Digital Research’s GEM was a potential third way between Apple Macintosh and Windows, but Gary Kildall wasn’t hungry enough and let it die as basically just a MSDOS front end that had to fit in that 640 kilobytes.

Posted in Uncategorized | Leave a comment

03 – GenX

Posted in Uncategorized | Leave a comment

19 – Toot

Posted in Uncategorized | Leave a comment

20 – Xena

Posted in Uncategorized | Leave a comment

K7 – LGBTQ

Posted in Uncategorized | Leave a comment

K8 – Triangle

Calculate the area of any triangle


#!/usr/bin/python3
import sys,math
a=float(sys.argv[1])
b=float(sys.argv[2])
c=float(sys.argv[3])
peri=a+b+c
area=math.sqrt((a+b+c)*(a+b-c)*(a-b+c)*(-a+b+c))/4
print("Perimeter=",peri)
print("Area=",area)
Posted in Uncategorized | Leave a comment