katoshu

[Python] How to Find Element in List [exact match, partial match]

Grammar/Environments List

[Python] How to Find Element in List [exact match, partial match]

2022/10/23    ,

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]

Grammar/Environments List

[Python] How to Transpose List [convert rows to columns]

2023/10/15    ,

This article shows how to transpose list. How to display a two-dimensional array In the beginning, I ...

[Python] How to compare two Lists

Grammar/Environments List

[Python] How to Compare two Lists

2022/10/23    ,

This article shows how to compare two lists. How to use "set( )" function for comparing list element ...

[Python] How to Sort List [sort method, sorted function]

Built in function Grammar/Environments List

[Python] How to Sort List [sort method, sorted function]

This article shows how to sort list. sort method : sort the original list By using the sort method, ...

[Python] How to use Lambda Function

Grammar/Environments

[Python] How to Use Lambda Function

2023/1/3    

This article shows how to use lambda function. What is lambda function ? A lambda function in Python ...

[Python] How to use map Function

Built in function Grammar/Environments

[Python] How to Use map() Function

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]

Grammar/Environments List

[Python] Add elements to list [append, insert, extend, join]

2022/10/23    ,

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]

Grammar/Environments List

[Python] Remove Elements from List [del, remove, pop, clear]

2022/10/23    ,

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.

Grammar/Environments

[Python Variable]Name Convention, how to check data type etc.

2022/9/23    

This article shows basics of variables in Python. Proper understanding of variable naming convention ...

[Python] print function [format, without newline, f-strings]

Built in function Grammar/Environments

[Python] print function [format, without newline, f-strings]

This article shows basic usage of print() function. Basics of print function Numbers and strings can ...