Skip to content

Commit b1415b6

Browse files
committed
Add code blocks
1 parent b6a560a commit b1415b6

File tree

1 file changed

+56
-58
lines changed

1 file changed

+56
-58
lines changed

Python/README.md

Lines changed: 56 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@
4848
* \xhhh
4949
* Subscripting (Indexing)
5050
* Slicing
51-
* .format()
51+
* `.format()`
5252

5353
4. List
54-
* .append()
55-
* .pop()
56-
* .remove()
57-
* .clear()
54+
* `.append()`
55+
* `.pop()`
56+
* `.remove()`
57+
* `.clear()`
5858

5959
4. Statements
6060
* import
@@ -81,55 +81,53 @@
8181
* global
8282

8383
5. Basic Functions
84-
* len()
85-
* type()
86-
* abs()
87-
* all()
88-
* any()
89-
* ascii()
90-
* bin()
91-
* bool()
92-
* bytes()
93-
* complex()
94-
* dict()
95-
* dir()
96-
* enumerate()
97-
* eval()
98-
* exec()
99-
* filter()
100-
* float()
101-
* format()
102-
* getattr()
103-
* globals()
104-
* hasattr()
105-
* hash()
106-
* help()
107-
* hex()
108-
* input()
109-
* int()
110-
* isinstance()
111-
* issubclass()
112-
* len()
113-
* list()
114-
* locals()
115-
* max()
116-
* min()
117-
* next()
118-
* open()
119-
* pow()
120-
* print()
121-
* range()
122-
* round()
123-
* set()
124-
* setattr()
125-
* super()
126-
* sorted()
127-
* str()
128-
* sum()
129-
* tuple()
130-
* type()
131-
* zip()
132-
* \_\_main__()
84+
* `len()`
85+
* `type()`
86+
* `abs()`
87+
* `all()`
88+
* `any()`
89+
* `ascii()`
90+
* `bin()`
91+
* `bool()`
92+
* `bytes()`
93+
* `complex()`
94+
* `dict()`
95+
* `dir()`
96+
* `enumerate()`
97+
* `eval()`
98+
* `exec()`
99+
* `filter()`
100+
* `float()`
101+
* `format()`
102+
* `getattr()`
103+
* `globals()`
104+
* `hasattr()`
105+
* `hash()`
106+
* `help()`
107+
* `hex()`
108+
* `input()`
109+
* `int()`
110+
* `isinstance()`
111+
* `issubclass()`
112+
* `list()`
113+
* `locals()`
114+
* `max()`
115+
* `min()`
116+
* `next()`
117+
* `open()`
118+
* `pow()`
119+
* `print()`
120+
* `range()`
121+
* `round()`
122+
* `set()`
123+
* `setattr()`
124+
* `super()`
125+
* `sorted()`
126+
* `str()`
127+
* `sum()`
128+
* `tuple()`
129+
* `zip()`
130+
* `\_\_main__()`
133131

134132
5. Classes
135133
* class
@@ -140,10 +138,10 @@
140138
* Methods
141139
* Self
142140
* Instance Object
143-
* \_\_init__(self)
144-
* \_\_str__(self)
145-
* \_\_iter__(self)
146-
* \_\_next__(self)
141+
* `\_\_init__(self)`
142+
* `\_\_str__(self)`
143+
* `\_\_iter__(self)`
144+
* `\_\_next__(self)`
147145

148146

149147
6. Tasks

0 commit comments

Comments
 (0)