發表文章

目前顯示的是 12月, 2025的文章

邱季萱python維基百科

圖片
CSS=Cascading Style Sheet=階層樣式表單。 HTML語法是小於<(HTML規定不能用,所以要如此表達)、大於>前後包圍,對稱指令,結束的加上斜線SLASH /。 HTML = HyperText Markup Language,超文件標記語言。 FRAME框架,相框。SRC=SOURCE=來源 維基百科PYTHON程式語言 Python語法中的複合語句,包含了一些其他語句,它們以某種方式影響或控制這些其他語句的執行。Python的複合語句包含一個或多個子句(clause),子句構成自一個頭部(header)和一個套件(suite)。特定複合語句的子句頭部都在同樣的縮排層級上,每個子句頭部開始於一個唯一標識關鍵字,並結束於一個冒號。套件即語法意義上的塊,是這個子句所控制的一組語句。 Python uses whitespace indentation(空白鍵縮排), rather than curly brackets or keywords(而不是使用 大括號 ), to delimit blocks(來界定區段). An increase in indentation comes after certain statements; a decrease in indentation signifies the end of the current block.[82] Thus, the program's visual structure accurately represents its semantic structure.[83] This feature is sometimes termed the off-side rule. Some other languages use indentation this way; but in most, indentation has no semantic meaning. The recommended indent size is four spaces. 教學影片622

邱季萱Javascript在瀏覽器就可以執行不需要VS Code

圖片
Javascript在網頁就可以執行不需要開啟Spyder 邱季萱執行 執行 VS code 編輯網頁

邱季萱PYTHON條件判斷

圖片
from tkinter import * #或者import tkinter as tk import math#輸入數學函式庫 tk = Tk() #建構視窗名為tk tk.geometry('1200x400')#視窗 寬1200像素 tk.title("邱季萱python tkinter輸入數學函式庫") canvas = Canvas(tk, width=1200, height=400, bg='purple') canvas.grid(row=0,column=0,padx=5,pady=5,columnspan=3) delay=1 # milliseconds, 1/1000秒 x1,y1,z1=0,200,10#python特徵,多變數=對等值 h=190 #上下範圍,相當於數學1到-1 def LH(): global x1, y1, z1,inc #global全球,local當地 if(x1==0): inc=1#往左 canvas.delete("all") elif(x1==1200): inc=-1#往右 canvas.delete("all") x2 = x1 + inc #換到下個+1然後改成-1 一定要將起始點改成右端 y2=200 - h*math.sin(0.02*x2) z2=200 - h*math.cos(0.02*x2) L1=canvas.create_line(x1,y1,x2,y2,fill='white',width=10) L2=canvas.create_line(x1,z1,x2,z2,fill='pink',width=10) x1,y1,z1=x2,y2,z2 canvas.after(delay,LH)#每隔delay執行 #return LH() #執行LauHou老猴 tk.mainloop()

邱季萱python全域變數global和判斷if

圖片
from tkinter import * #或者import tkinter as tk import math#輸入數學函式庫 tk = Tk() #建構視窗名為tk tk.geometry('1200x400')#視窗 寬1200像素 tk.title("邱季萱python tkinter輸入數學函式庫") canvas = Canvas(tk, width=1200, height=400, bg='purple') canvas.grid(row=0,column=0,padx=5,pady=5,columnspan=3) delay=3 # milliseconds, 1/1000秒 x1,y1,z1=0,200,10#python特徵,多變數=對等值 h=190 #上下範圍,相當於數學1到-1 def LH(): global x1, y1, z1#global全球,local當地 x2 = x1 + 1 #換到下個+1 y2=200 - h*math.sin(0.02*x2) z2=200 - h*math.cos(0.02*x2) L1=canvas.create_line(x1,y1,x2,y2,fill='white',width=10) L2=canvas.create_line(x1,z1,x2,z2,fill='pink',width=10) if (x2 < 1200): #沒有超過, 記得將 "小於" 改成運算 #小於大於<另外大於>也可以使用字碼<十進位> x1,y1,z1=x2,y2,z2#下一個起點是現在終點 canvas.after(delay,LH)#每隔delay執行 else: canvas.delete("all") x1,y1,z1=0,200,10#下一個起點是回到原點 canvas.after(delay,LH) #return LH() #執行LauHou老...