第三課 隨機漫步

2021-09-26 14:11:09 字數 1635 閱讀 2727

'''

隨機漫步

'''import matplotlib.pyplot as plt

from random import choice

class randomwail():

'''生成乙個隨機漫步的資料

'''def __init__(self,num_points=50000):

self.num_points = num_points

self.x_values = [0]

self.y_values = [0]

def fill_walk(self):

while len(self.x_values) < self.num_points:

x_direction = choice([1,-1])

x_distance = choice([0,1,2,3,4])

x_step = x_direction * x_distance

y_direction = choice([1, -1])

y_distance = choice([0, 1, 2, 3, 4])

y_step = y_direction * y_distance

#拒絕原地踏步

if x_step == 0 and y_step == 0:

continue

#計算下乙個點的值

next_x = self.x_values[-1] + x_step

next_y = self.y_values[-1] + y_step

'''小試牛刀

'''# rw = randomwail()

# rw.fill_walk()

# plt.scatter(rw.x_values, rw.y_values, s=16)

# plt.show()

'''命令生成漫步圖

'''while true:

rw = randomwail()

rw.fill_walk()

'''畫布大小

'''plt.figure(figsize=(10,10))

'''給點上色

'''point_numbers = list(range(rw.num_points))

plt.scatter(rw.x_values,rw.y_values,c=point_numbers,cmap=plt.cm.reds,edgecolors='none',s=1)

'''突出起點和重點

'''plt.scatter(0,0,c='green',edgecolors='none',s=100)

plt.scatter(rw.x_values[-1],rw.y_values[-1],c='yellow',edgecolors='none',s=100)

'''隱藏座標軸

'''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第三課答案 python第三課

字串操作 s alexwusir s1 s.capitalize 首字母大寫 print s1 全大寫,全小寫 s2 s.upper s21 s.lower print s2,s21 大小寫翻轉 s3 s.swapcase print s3 每個隔開 特殊字元或數字 的單詞首字母大寫 s alex ...

python第三課答案 python第三課筆記

以下哪個變數的命名不正確?為什麼?a mm 520 b mm520 c 520 mm d 520 mm 答 c不正確,不能數字開頭 在不上機的情況下,以下 你能猜到螢幕會列印什麼內容嗎?myteacher 小甲魚 yourteacher myteacher yourteacher 黑夜 print ...

python第三課答案 python第三課

1.迴圈物件,主要呼叫next 2.迭代器iterator 在理解上可以和迴圈物件理解為乙個東西。3.生成器 generator 自定義的迴圈物件。4.表推導 list comprehension 是快速生成表的方法。表推導用中括號。l x 2 for x in range 10 練習 f open...