#codeparttimeUnmoderated tagAll postsTrending CommunitiesSteemitCryptoAcademyNewcomers' CommunitySteemit Feedbackআমার বাংলা ব্লগKorea • 한국 • KR • KOSteem AllianceSTEEM CN/中文Comunidad LatinaSteem POD TeamAVLE 일상WORLD OF XPILARBeauty of CreativityExplore Communities...#codeparttimeTrendingHotNewPayoutsMutedrnkchr0 (35)in #bulkloading • 2 years agoBulkheading in CS: Ultimate Guide to System StabilityDiscover the power of bulkheading in computer science, explore its strategies, and learn how to implement it in…rnkchr0 (35)in #python • 2 years agoPython Empty Lists: Creation, Use Cases, and TipsLearn how to create empty lists in Python using two methods, explore their practical use cases, avoid common mistakes…rnkchr0 (35)in #react • 2 years agoConvert Class Component to Function(Arrow) Component – ReactWe can convert a class component to an arrow functional component in React. Let’s look at an example and understand how to do it.rnkchr0 (35)in #pythondeveloper • 2 years agoSort Dictionaries by Key, or Value, in Python – Asc, DescPython includes a built-in function, the sorted() function, that we can utilize for efficiently sorting dictionaries…rnkchr0 (35)in #codeparttime • 3 years agoOrderedDict – Python Class | Why should we use it?OrderedDict – Python Class | Why should we use it? OrderedDict was developed to enable dictionaries to remember the…rnkchr0 (35)in #codeparttime • 3 years agoos.listdir() Method – Python | Explained with Examplesos.listdir() is an integral feature of Python’s os package. os.listdir() method retrieves a list of all files and…rnkchr0 (35)in #python3 • 3 years agoabs() vs fabs() – Python functions – Find absoluteabs() and fabs() functions in Python are used to return the absolute of a number passed to them. But there are a few differences ..rnkchr0 (35)in #python3 • 3 years agoabs() function – Python – Find absolute of a numberA number’s absolute value is its value without regard to its sign. The abs() function in Python returns the number’s absolute value.rnkchr0 (35)in #pythonprogramming • 3 years agoall() function – Python – Explained with ExamplesThe all() function in Python iterates over every element in the iterable object we pass as an input parameter.rnkchr0 (35)in #programming • 3 years agomode() method – Python statistics modulePython mode() is a statistics module built-in function that applies to datasets like lists, arrays, or tuples. The…rnkchr0 (35)in #python • 3 years agostartswith() Method – Python String – with ExamplesIf the string begins with the supplied value, the startswith() method returns True; otherwise, it returns False.rnkchr0 (35)in #python • 3 years agorandom choice() method – Python – with ExamplesThe random module’s built-in choose() function picks an element randomly from a sequence, such as a string, list, tuple, or range.rnkchr0 (35)in #python • 3 years agoPython maketrans() string method – Explained with Examplesmaketrans() string method returns a ‘mapping table’ that can be used by the translate() method for translations.rnkchr0 (35)in #python • 3 years agohex() function – Python – with Exampleshex() function takes an integer as an input parameter. The integer can be positive or negative, but not decimal.rnkchr0 (35)in #python • 3 years agoos.walk() Method – Python – Explained with Examplesos.walk() is a part of Python’s os built-in module. The os module consists of operating system interfaces. It gives us…rnkchr0 (35)in #python • 3 years agoUsing pi(π) in Python – math.pi ConstantThe math library contains a method called pi, using which we can easily access the value of pi(π) and use it for…rnkchr0 (35)in #python • 3 years agoUsing pop() method in Dictionary – PythonIn Dictionary/Objects in Python, if we want to remove/pop out a key-value pair, we use the pop() method. Syntax of…rnkchr0 (35)in #python • 3 years agoPython File close() Method – How to close a file in Python?The close() method’s syntax is as follows: file.close() close() is a Python file method that closes an opened…rnkchr0 (35)in #java • 3 years agoHow to obtain substring of a string in Java?How to obtain substring of a string in Java? In Java, the substring() function returns a piece of a string and…