Not sure why this simple plot won't show. simply shows an In[*] and won't finish loading the plot. Can't find any info on what the * means. Any help?
import numpy as np
import matplotlib.pyplot as plt
r = np.arange(1,11)
v2 = 1.0/r
font = {'family' : 'serif',
'color' : 'black',
'weight' : 'normal',
'size' : 18,
}
plt.xlabel('$V*$', fontdict = font)
plt.ylabel('$Radii$', fontdict = font)
plt.plot(r,v2,lw=2)
plt.show()
%matplotlib inline