forked from UniversalPython/UniversalPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.yaml
More file actions
55 lines (52 loc) · 1.47 KB
/
Copy pathdefault.yaml
File metadata and controls
55 lines (52 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
aliases:
- "유니버설파이썬"
- "한국어파이썬"
letters:
start : "가"
end : "힣"
extra : ""
numbers:
start : "0"
end : "9"
reserved:
"." : "."
"," : ","
"1" : "1"
"2" : "2"
"3" : "3"
"4" : "4"
"5" : "5"
"6" : "6"
"7" : "7"
"8" : "8"
"9" : "9"
"0" : "0"
"출력" : "print"
"아니면만약" : "elif"
"만약" : "if"
"그렇지않으면" : "else"
"동안" : "while"
"각각" : "for"
"안에" : "in"
"입력" : "input"
"중단" : "break"
"계속" : "continue"
"건너뛰기": "pass"
"참" : "True"
"거짓" : "False"
"이다" : "is"
"클래스" : "class"
"함수" : "def"
"__초기화__" : "__init__"
"자기자신" : "self"
"반환" : "return"
"문자열모듈": "string"
"문자열" : "str"
"추가" : "append"
"제거" : "pop"
"그리고" : "and"
"또는" : "or"
"모두" : "all"
"어떤" : "any"
"값없음" : "None"
"정수" : "int"