TIL

TIL 2020.10.20

paigekim29 2020. 10. 20. 23:32

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