The ord() function in Python accepts a string of length 1 as an argument and returns the unicode code point representation of the passed argument…. [Read More]
Python ascii() Function with examples
The ascii() Function in Python returns readable representation of an object (String, tuple, list, dictionary etc.). In this tutorial we will see the usage of… [Read More]
Types of Computer Network: LAN, MAN and WAN
A computer network is a group of computers connected with each other through a transmission medium such as cable, wire etc. In this guide, we… [Read More]
Python any() Function with examples
Python any() function accepts iterable (list, tuple, dictionary etc.) as an argument and return true if any of the element in iterable is true, else… [Read More]
Python all() Function with examples
Python all() function accepts an iterable object (such as list, dictionary etc.) as an argument. If all the elements in the passed iterable are true… [Read More]
Python abs() Function with examples
Python abs() Function returns the absolute (non-negative value) value of a number. For example, absolute value of -5 is 5 and absolute of 5 is… [Read More]
Python Dictionary with examples
Dictionary is a mutable data type in Python. A python dictionary is a collection of key and value pairs separated by a colon (:), enclosed… [Read More]
Python Variables with examples
Variables are used to store data, they take memory space based on the type of value we assigning to them. Creating variables in Python is… [Read More]
Kotlin Sealed Class with examples
A sealed class is used for representing restricted class hierarchy where an object or a value can have one of the types from a limited… [Read More]
Kotlin Data Class with examples
In Kotlin, you can create a data class to hold the data. The reason why would you want to mark a class as data is… [Read More]
- « Previous Page
- 1
- …
- 52
- 53
- 54
- 55
- 56
- …
- 150
- Next Page »