This commit is contained in:
louiscklaw
2025-02-01 02:09:11 +08:00
commit ac46b859c2
32 changed files with 3128 additions and 0 deletions

22
Q2/hand_draft.md Normal file
View File

@@ -0,0 +1,22 @@
# need to setup (minimum, my list)
- setup editor (vscode, windows)
- https://code.visualstudio.com/download
- setup python (windows)
- https://www.python.org/ftp/python/3.11.5/python-3.11.5-embed-amd64.zip
# string
string = '123'
string = 'abc'
# integer
integer = 1
integer = 1234567
# boolean
boolean = True
boolean = False