New: codeparttimeAll contenthive-129948hive-196917krzzanhive-183959steemhive-180932hive-166405photographyhive-144064uncommonlabhive-185836bitcoinhive-183397hive-150122hive-188619krsuccesslifehive-124908hive-101145hive-139150hive-103599hive-184714hive-109690hive-145157TrendingNewHotLikersrnkchr0 (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 microservices and Akka-based systems for improved resilience.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, and discover advanced techniques for working with lists.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 by keys or values(in Asc or Desc order).rnkchr0 (35)in codeparttime • 2 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 insertion order. It is a subclass of the class dict.rnkchr0 (35)in codeparttime • 2 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 directories in a given directory.. #codeparttime #code #coding…rnkchr0 (35)in python3 • 2 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 • 2 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 • 2 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 • 2 years agomode() method – Python statistics modulePython mode() is a statistics module built-in function that applies to datasets like lists, arrays, or tuples. The mode() method determines the central tendency of numerical or nominal data.rnkchr0 (35)in python • 2 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 • 2 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 • 2 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 • 2 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 • 2 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 a .. #python #pythonprogramming #codeparttime #python3 #code #coding…rnkchr0 (35)in python • 2 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 calculations in Python. #python #programming #codeparttime #coding…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 pop() method – dictionary.pop(key) dictionary.pop(key, defaultValue) #python…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 file. #python #python3 #programming #programmer #codeparttime #programmingconceptrnkchr0 (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 obtains substrings. The substring() method is implemented in two distinct ways. #java…