上課筆記

tags: 上課筆記
notion筆記 用法

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More →


承威 - 燈泡

TOC

https://www.jin-hua.com.tw/webc/html/product/show.aspx?num=1903&kind=1559

https://www.jin-hua.com.tw/webc/html/product/show.aspx?num=29917&kind=2919


承威 - 燈泡靈感

http://www.edchew.my/portfolio/upcycling/tetralamp.html
https://www.boredpanda.com/chandelier-forest-trees-hilden-diaz/
https://www.youtube.com/watch?v=tgpdaMudMpY

0723 :

  1. 底座不要侷限於圓柱體
  2. 要畫彎管模具


n = int(input()) a = [0, 0, 0] for i in range(n): x = int(input()) if x%3 == 0: a[0] = a[0] + 1 if x%3 == 1: a[1] = a[1] + 1 if x%3 == 2: a[2] = a[2] + 1 print(a[0],a[1],a[2])