Python

pykim - Python
001-1. constructing python development environment
001-2. introduction to python
001-3. operator
001-4. operator - if statement
001-5. creating function
001-6. regular expression
001-7. applying regular expression
002-1. controlling statements
002-2. iteration statement focusing on "for"
002-3. iteration statement focusing on "for" with randomly generated numbers
002-4. list
002-5. detail of list


dojang - Python
028-001. creating set, differnce between list/dictionary and set, frozenset
028-002. set operator, union(OR, |), intersection(AND, &), difference(-), symmetric difference(XOR, ^)
032-001. positinal argument, variable argument, *args, unpacking list and tuple
032-002. keyword argument
035-001. global variable, local variable, global namespace, locals()
035-002. creating method inside of method, global keyword, nonlocal keyword
035-003. using closure
036-001. writing method in class
036-002. attribute, __init__(), magic method, special method, instance attribute, *args, **kwargs, __slot__
036-003. private attribute, private method
39. Iterator
39.1_Iterable_object
39.2_Create_iterator
39.3_Create_iterator_which_you_can_access_by_using_index_Getitem_func
39.4_Built_in_functions_iter_and_next
40. Generator
40.1_Generator_and_yield
40.2_Create_generator_acting_like_range_func
40.3_Pass_values_multiple_times_by_using_yield_from
40. Decorator
42.1_Create_decorator
42.2_Create_decorator_which_processes_parameter_and_return_value
42.3_Create_decorator_which_has_parameter
42.4_Create_decorator_by_using_class
045-001. using regular expressing, re.match(), re.search(), ^, $, |
045-002. regular expression patter for range, simplified notation(\d), special characters(\), whitespace(\s), compile()
045-003. combining regular expression pattern as group
045-004. replacing string, sub(), raw string in regualr expression
047-004. matplotlib, plt.show()
048-007. using metaclass


uypark - python
003-001. self invoking
003-005. lambda


C++

YK-Notes from C++ Lecture
018_array
041_pointer_object_and_destructor_and_delete
042_this_pointer_friend_function
044_string_object_class
046_fstream
048_io_binary_file
050_class_inheritance
051_constructor_and_destructor
052_constructor_and_destructor
054_overriding_dynamic_binding_pure_virtual_function_abstract_class
055_Dynamical_casting_upcasting_downcasting
056_dynamical_cast_objects_upcasting_downcasting_multiple_inheritance


My regular expression notes

https://youngminpark2559.github.io/plang/myre/001


Environment Setup

https://youngminpark2559.github.io/plang/env/python/001


my note

001. https://youngminpark2559.github.io/plang/mynote/001