-
[Python] How to Find Element in List [exact match, partial match]
2022/10/23 Grammar/Environments, List
This article shows how to find element in list. How to find an element by exact match and check if i ...
-
[Python] How to Transpose List [convert rows to columns]
2023/10/15 Grammar/Environments, List
This article shows how to transpose list. How to display a two-dimensional array In the beginning, I ...
-
[Python] How to Compare two Lists
2022/10/23 Grammar/Environments, List
This article shows how to compare two lists. How to use "set( )" function for comparing list element ...
-
Built in function Grammar/Environments List
[Python] How to Sort List [sort method, sorted function]
2022/10/23 Built in function, Grammar/Environments, List
This article shows how to sort list. sort method : sort the original list By using the sort method, ...
-
[Python] How to Use Lambda Function
2023/1/3 Grammar/Environments
This article shows how to use lambda function. What is lambda function ? A lambda function in Python ...
-
Built in function Grammar/Environments
[Python] How to Use map() Function
2023/1/3 Built in function, Grammar/Environments
This article shows how to use map() function. What is map function? In the beginning, I explain brie ...
-
[Python] Add elements to list [append, insert, extend, join]
2022/10/23 Grammar/Environments, List
This article show how to add elements to list. append : Add an element at the end By using append() ...
-
[Python] Remove Elements from List [del, remove, pop, clear]
2022/10/23 Grammar/Environments, List
This article shows how to remove Elements from List in Python. del : Remove elements by index or sli ...
-
[Python Variable]Name Convention, how to check data type etc.
2022/9/23 Grammar/Environments
This article shows basics of variables in Python. Proper understanding of variable naming convention ...
-
Built in function Grammar/Environments
[Python] print function [format, without newline, f-strings]
2022/9/23 Built in function, Grammar/Environments
This article shows basic usage of print() function. Basics of print function Numbers and strings can ...