iT邦幫忙

froce 的所有最佳解答 211

Django User is_active 的判斷

User物件有check_password(raw_password)和set_password(raw_password)https://docs.djang...

2021-06-10 ‧ 由 stevenwyang 提問

jQuery 做跑馬燈

.abgne-news-scroll li { display: none; } css加這個就不會重複了。要不然你newScroll那邊不要從第一項開始...

2021-04-27 ‧ 由 mayyola 提問

python 撲克牌程式導讀問題(python100day)[已解決]

跟你說過了啊,遇到code就要一步一步去推導。這個其實你知道 self._cards_on_hand 這函數的型態,你就得到答案了。這個我就不帶你推導了。你自己...

2021-04-27 ‧ 由 tadpole1999 提問

求救 zerojudge f708: 蟲蟲危機 (Insect)

ants = [] grasshoppers = [] try: ants = [int(i) for i in input().split("...

2021-04-20 ‧ 由 1092B0007 提問

linked list Python(以解決)

list1 = SingleLinkedList() # 初始化LinkedList # 此時 self.head、self.tail是None # self...

2021-04-14 ‧ 由 tadpole1999 提問

呼叫class的方法,加不加括號的差異

加括號就是執行,不加就是本身 def testfun(): return "test" print(testfun) pr...

2021-03-03 ‧ 由 oxygen8848 提問

想請教有關於 Python "pyautogui"這個套件之中的"confirm box"的 button 行為設定

應該直接判斷傳回值就行了。以下是 http://easygui.sourceforge.net/tutorial.html#ccbox 的範例,應該是一樣的。...

2021-02-25 ‧ 由 aa66777aa 提問

javascript遍歷替換文字問題

$('.first .third').each(function(i){ $(this).text(i); }) 你原本的寫法每次都會抓所有的[.firs...

2021-02-03 ‧ 由 leo226 提問

Line Bot範例的物件型別看不懂

這樣是1個event,哪裡奇怪了? { "replyToken": "0f3779fba3b349968c5d07db31ea...

2021-02-01 ‧ 由 O口O 提問

webpack使用疑問

1.大致是對的,但你的理解不夠深入。2.他不是打包 html、css、image等靜態資源(雖然也可以)。3.你 entry 那邊要寫的是js,webpack是...

2021-01-27 ‧ 由 阿薩姆 提問