是非題
數位製造不僅是3D列印、更是製造方式的數位化,不是只有將設計方式數位化、還包含了材料和過程。創客風潮是一種懷舊的叛逆次文化,以創意為口號舉辦Maker Faire及一些藝文活動。
[ ] T F
IoT物聯網是網際網路、傳統電信網等資訊承載體,讓所有能行使獨立功能的普通物體實作互聯互通的網路。
[x] T
Harrysome Chou changed 3 years agoView mode Like 3 Bookmark
Class 類別(進階)
A language feature would not be worthy of the name “class” without supporting inheritance.
如果沒有支援繼承,「class」這個語言特色就不值得被稱為 class。
--Python 官方說明書
Inheritance 繼承
class Car:
def __init__(self, engine, price, speed):
self.engine = engine
https://neoj.sprout.tw/problem/288/
題目敘述
簡單的把以下這段文章印到螢幕上去
It is no secret that today’s workforce no longer
consists entirely of people. Rather, machines are
being developed to complete many of the tasks
which humans have traditionally done. This can
greatly increase productivity and efficiency of
https://neoj.sprout.tw/problem/2334/
題目敘述
小高某天撿到了一個字串,那個字串是小寫英文字母組成。小高覺得這個字串很可愛,決定把它送給心儀的女生,於是他雀躍地前往心儀的女生的家。
突然他注意到路旁有一家專門美容字串的店,他提供一些字串操作讓你的字串變得美美的,就連字串自己照鏡子都會覺得好美,忍不住多看一眼。 他們提供的服務有:
在你的字串由左數來(1-base)的第 i 個字元右邊插入一個字串,若 i 等於 0 代表是在整個字串的左邊插入字串。
將你的字串由左數來(1-base)的第 l 個到第 r 個字元通通消除。
將你的字串由左數來(1-base)的第 l 個到第 r 個字元整個反轉。