python编程---example27

分子运动

import matplotlib.pyplot as plt
from random_walk import RandomWalk

while True:
	rw = RandomWalk(5000)
	rw.fill_walk()

	plt.figure(dpi=128, figsize=(10,6))

	point_number = list(range(rw.num_points))
	plt.plot(rw.x_values, rw.y_values, linewidth=1, zorder=1)

	plt.scatter(0, 0, c='green', edgecolors='none', s=75, zorder=2)
	plt.scatter(rw.x_values[-1], rw.y_values[-1], c='red', edgecolors='none', s=75, zorder=2)

	plt.axes().get_xaxis().set_visible(False)
	plt.axes().get_yaxis().set_visible(False)

	plt.show()

	keep_running = input("Make another walk?(y/n): ")
	if keep_running == 'n':
		break

python编程---example27_第1张图片

你可能感兴趣的:(python)