python
-
python 기초python 2023. 3. 20. 04:37
• Python 은 multiple programming paradigms - object-oriented, imperative, functional programming / procedural style • Python의 자료구조 (built-in data types) - Numbers (immutable) - Sequences : String(immutable) / Lists(mutable) / Tuples(immutable) / Dictionaries(mutable) : String은 ' '로, List는 [], Tuple은 (), Dictionary는 {}안의 key와 value 값으로 구성 - Files - split()을 이용하여 string을 list로, join()을 이용해서 list를 s..