TO DO LIST

  1. review python ✅
  2. review vanilla javascript ✅

WHAT I LEARNED

  • How to use replace
    • word.replace(u'\xa0', u' ') = replaced with space
    • word.replace(u'\xa0', u'') # removed completely
  • How to make csv
    • mode="w" write only
    • mode="r" read only
    • has to put inside the list ynder wruter,writerow to be printed in csv as below

'TIL' 카테고리의 다른 글

TIL 2020.10.22  (0) 2020.10.22
TIL 2020.10.21  (0) 2020.10.22
TIL 2020.10.19  (0) 2020.10.19
TIL 2020.10.16  (0) 2020.10.16
TIL 2020.10.15  (0) 2020.10.15

+ Recent posts