Conditionals In Python Joko Fani Andrianto Add Comment Conditionals are a key part of applying logic within your code and understanding conditionals starts with understanding the if statement. Co... Read More
Python split() To Create List From String Joko Fani Andrianto Add Comment In previous post I already write about list and join to create list or array and you can use join to convert list to be a string. Now if you... Read More
List In Python & How To Manipulate Them Joko Fani Andrianto Add Comment Lists are exactly what they sound like. They are a list of objects - each object is called an element, and each element is of the same or di... Read More
Python Using format() To Automaticaly Put Space Joko Fani Andrianto Add Comment When you append some variable maybe you will deal with problem like spacing. By using format() you can simplify the need of spacing for exam... Read More
Python Use Strip() To Remove White Space Joko Fani Andrianto Add Comment Some time you deal with blank space something like this ' 10.255.1.10/24 ' if you deal with this some time you need to... Read More
Python startswith() and endswith() Joko Fani Andrianto Add Comment Startswith & Endswith is used to verify if a string starts with a certain sequence of characters and endswith is used to verify if a ... Read More
Python upper() and lower() Method Joko Fani Andrianto Add Comment Using the upper() and lower() methods is helpful when you need to compare strings that do not need to be case-sensitive. For example, mayb... Read More