{%hackmd @ZZRT/CSS %}
Lesson 3
操作底盤方式介紹
這次要介紹兩種操作方式,分別是
arcade drive
tank drive
Apr 08, 2022・Contributed by
{%hackmd @ZZRT/CSS %}
Lesson 1
基礎概念-First Java Program
在Java中,每行程式都要放在class中,這裡的例子是FRC
class FRC {
public static void main(String[] arg) {
Mar 11, 2022・Contributed by
鴨子型別
「當看到一隻鳥走起來像鴨子、游泳起來像鴨子、叫起來也像鴨子,那麼這隻鳥就可以被稱為鴨子。」
class Cat:
def make_sound(self):
print('Meow~')
class Dog:
def make_sound(self):
print('Woof')
Dec 16, 2021・Contributed by
{%hackmd @ZZRT/CSS %}
Lesson 4
list 串列
增加元素
list.append(obj) 直接放入
list.extend(obj) 拆解並放入
Oct 28, 2021・Contributed by
{%hackmd @ZZRT/CSS %}
物件導向 Object Oriented
Why OOP?
減少重複的程式
易於維護、擴充
提高可讀性
有許多以物件導向為基礎的設計模式讓開發更快速
Oct 12, 2021・Contributed by
---
title: 文字特效 # 簡報的名稱
tags: CSS # 簡報的標籤
---
<!-- 自訂CSS設定 -->
<style>
.comment {
font-size:70%;
color: grey;
}
.block {
cursor:default;
background: rgba( 200, 200, 200, .1 );
font-size: 85%;
border-radius: 5px;
padding: .4em;
width:auto;
text-align:center;
transition:0.5s;
position:relative;
bottom:0;
}
.block:hover{
font-size:1.5em;
padding:.2em;
Oct 10, 2021・Contributed by
{%hackmd @ZZRT/CSS %}
Python
Everything in Python is Object
Everything in Python is ...?
object
magic
function
Oct 02, 2021・Contributed by
Lesson 2
迴圈
for
除了上次提到的while迴圈
for 迴圈在Python更常見
用它來遍歷一個容器
甚麼是容器?
Sep 24, 2021・Contributed by