發表文章

乙班楊子霈期中考EXCEL和Javascript比較

圖片
期中考學習報告與心得 過去,孩子在田間與手工藝中模仿大人,將勤奮化為身體記憶;現在,手機成了廉價托育,卻也讓成就感變得虛擬而蒼白。 若 16 歲是軌跡定型,那大學的「動手做」就是最後的校正機會。透過電腦實作,我們讓孩子從消費者變回創造者。在不斷的「除錯」與「完成」中,用指尖的真實觸感取代屏幕的幻象,重新累積那份失落已久的、紮實的成就動能。這不只是學技能,更是重塑人生的歸屬與認同。 這課堂很棒 網頁執行IRR和EXCEL比較 head/head,body/body畫蛇添足,可拿掉,因為部落格架構已經下這些命令 躉繳 第1期 第2期 第3期 注意,包含首期躉繳的現金流量都大於0。 輸出: 報酬率: 淨現值: 迴圈次數: EXCEL對照 src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAylg7NiDuwnICQaSNS2PQEQqcjTJ_nyvSJvSHSvvoNlgAfzPwwhx2sd9oRzxbthC0nNxvZxLlxTv6cRHUFost0aiWxW4D-_oxFVNbD6TJ2YL6KuF0yFcuHFuk-o2NwXgEm6DfEd1_nAyfO7ubj4ObQpqW3UyJ72rnjqNdFSN5Nl8lcxeHGHv-xcM8BxHb/s1600/%E8%9E%A2%E5%B9%95%E6%93%B7%E5%8F%96%E7%95%AB%E9%9D%A2%202026-04-28%20133938.png" /> Google問Javascript和Python差異 JavaScript 和 Python 是目前最受歡迎的兩種程式語言,它們的主要差異在於 設計目的 與 執行環境 :JavaScript 最初是為了瀏覽器網頁互動而生,而 Python 則是為了提高程式碼可讀性與通用開發而設計。   iT 邦幫忙  +1 以下是兩者的詳細對比: 1. 核心定位與應用領域 JavaScript : 主要戰場 :前端開發的霸主,所有瀏覽器都原生支援。 擴展應用 :透過  Node.js  也能開發後端伺服器,以及透過 React Native 開發行動 Ap...

楊子霈期末考為python貪吃蛇增加速度

圖片
from tkinter import * import random GAME_WIDTH,GAME_HEIGHT = 1000, 400 SPEED = 1000 #時間單位千分之一 SPACE_SIZE, BODY_PARTS= 50, 3 #左邊變數 assigning value SNAKE_COLOR = ["red","orange","yellow","green","blue","indigo", "purple"] FOOD_COLOR = "white" BACKGROUND_COLOR = "black" class Snake: def __init__(self): self.body_size = BODY_PARTS self.coordinates = [] self.squares = [] for i in range(0, BODY_PARTS): self.coordinates.append([0, 0]) for x, y in self.coordinates: i = random.randint(0,6) square = canvas.create_rectangle(x, y, x + SPACE_SIZE, y + SPACE_SIZE, fill=SNAKE_COLOR[i], tag="snake", width=20,outline='blue') self.squares.append(square) class Food: def __init__(self): x = random.randint(0, int(GAME_WIDTH / SPACE_SIZE)-1) * SPACE_SIZE y = random.randint(0, int(GAME_HE...

楊子霈python維基百科

CSS=Cascading Style Sheet=階層樣式表單。 HTML語法是小於 前後包圍,對稱指令,結束的加上斜線SLASH /。HTML = HyperText Markup Language,超文件標記語言。 FRAME框架,相框。SRC=SOURCE=來源 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.
圖片
Javascript在網頁就可以執行不需要開啟Spyder 楊子霈執行 劉任昌執行

楊子霈全域變數global和判斷if

圖片
from tkinter import * #或者import tkinter as tk import math#輸入數學MATH函式庫 tk = Tk() #建構視窗名為tk tk.geometry('1200x400')#視窗 寬1200像素 tk.title(" 楊子霈python tkinter三角函數") canvas = Canvas(tk, width=1200, height=400, bg='PINK') 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='BLUE',width=10) L2=canvas.create_line(x1,z1,x2,z2,fill='yellow',width=10) if (x2

楊子霈python輸入ti\kinter和math函數

圖片
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='black') canvas.grid(row=0,column=0,padx=5,pady=5,columnspan=3) delay=10 # 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='pink',width=10) L2=canvas.create_line(x1,z1,x2,z2,fill='yellow',width=10) if (x2

import tkinter #輸入tkinter繪圖模組 #財金程式設計602 class Financial: #類別用於建構504道金融常識題目 def __init__(self, number, q, a, b, c, d, ans): self.number, self.q, self.ans = number, q, ans self.a, self.b, self.c, self.d = a, b, c, d def check(choice): choice = reply.get() #以字串存'1'...'4' temp = number.get() - 1 #題號 if choice == '1': LBa.config(bg="#a4abc1") if choice == List[temp].ans: LBa.config(bg='blue',fg='white') if choice == '2': LBb.config(bg="#a4abc1") if choice == List[temp].ans: LBb.config(bg='blue',fg='white') if choice == '3': LBc.config(bg="#a4abc1") if choice == List[temp].ans: LBc.config(bg='blue',fg='white') if choice == '4': LBd.config(bg="#a4abc1") if choice == List[temp].ans: LBd.config(bg=...