2023 iThome 鐵人賽
帶我們前進的 是想證明自己的力量
自我挑戰組
選手 347 文章 6123
Day 13
2023-09-17
313
0
Beat the Spread! T=input() for t in range(int(T)): a,b=map(int,input().split())...
Day 1
2023-09-16
313
0
Day 1_敘述(Statement) 1-1. print式子:a = 10print(a)結果:10 1-2. if式子:a = 1if a == 1:pr...
Day 6
2023-09-21
313
0
Day 6_關鍵字(Keywords) 6-1. 查看最新關鍵字清單式子:import keywordprint(keyword.kwlist)結果:['Fal...
Day 6
2023-09-21
313
0
加入Link 在Next.js 裡使用Link來取代原本的 <a> 標籤編輯 app\layout.jsx 內容如下 import Link fro...
Day 21
2023-10-05
313
0
前言 今天我們將講解JavaScript的Prototype inheritance(原型繼承),解釋其作用方式 說明 首先,在JavaScript中物件會有_...
Day 22
2023-10-07
313
0
上次的程式碼雖然可以登入,但會遇到一個問題,就是直接輸入登入的網址一樣能成功登入而不需要帳號密碼,但這樣並不實際,因此我們需要做更改: if (body.use...