comparison – POFTUT

Python Conditionals Like Greater, Lower, Equal Operators Examples

Python provides some conditionals to compare two python data or variables. We can compare same or similar variables and data then we will get result which present the comparison result. The comparison results will be true or false . In this tutorial we will look most popular comparison operations in python. Less Than Less than or < is … Read more

Python Date Time Functions With Examples

Date time is important part of the application development. Date is used in different format to show, save, or compare events and process. Date and time have different presentation formats which may be change according to countries and localization settings. In this tutorial we will look different usage examples of datetime operations. Import Datetime Library … Read more

Powershell Comparison Operators Like Equal, Greater, Lesser, Contains, Regex

Comparison operator is used to compare given values and return an boolean value like true and false . These operators are generally used by if , while and similar decision making keywords. All comparison operators are case-insensitive by default. So the uppercase or lowercase expression do not changes the behaviour of these comparison operators. Equal One of the most … Read more