import math
#Variable declaration
m=9.11*10**-31#in kg
h=6.63*10**-34#in j-s
#Calculations
ef=4.72*1.60*10**-19#in J
n=math.pi*(((8*m)/h**2)**(3./2))*((ef**(3./2))/3)
#Result
print "The number of electron per unit volume in lithium is %.2e /m**3"%n
import math
#Variable declaration
m=9.11*10**-31#in kg
h=6.63*10**-34#in j-s
c=3*10**8#m/s
ef=4.72*1.60*10**-19#in J
#Calculations
pf=math.sqrt(2*m*ef)
tf=pf/(m*c)
#Result
print "The angle is %.2e rad"%tf