Skip to content
Code_Underscored_logo
  • Python
  • Django
  • Web Development
  • Machine Learning
  • C++
  • Java
Code_Underscored_logo
  • Iterate through HashMap
    Java

    Iterate through HashMap in Java

    ByLucy March 31, 2022March 2, 2024

    HashMap contains data in (Key, Value) pairs that can be accessed using a different index type. The Map interface is implemented by the HashMap class, which allows us to store keys. Since Java 1.2, hashMap has been a part of the Java collections framework. Internally, it employs a relatively quick hashing technique.

    Read More Iterate through HashMap in JavaContinue

  • format strings in Python
    Python

    How to format strings in Python

    ByHumphrey March 30, 2022March 2, 2024

    Python string formatting is a valuable tool for Python programmers daily. Strings appear to be formatted similarly in each coding language. It’s also a big reason we utilize scripting languages in the first place.

    Read More How to format strings in PythonContinue

  • use Jupyter Notebook in Python
    Python

    How to use Jupyter Notebook in Python

    ByHumphrey March 30, 2022March 2, 2024

    The Jupyter Notebook is a fantastic tool for generating and interactively presenting data science projects. This post will show you how to set up Jupyter Notebooks on your system and use it for data science projects.

    Read More How to use Jupyter Notebook in PythonContinue

  • Convert String to Double in Java
    Java

    Convert String to Double in Java

    ByLucy March 27, 2022March 2, 2024

    It is commonly used when handling mathematical operations on a double number string. The entered data is received as a string whenever we retrieve data from a textfield or textarea. We must convert the string to double if the input data is double.

    Read More Convert String to Double in JavaContinue

  • Converting character array to string
    Java

    How to convert an integer to a string in Java

    ByLucy March 20, 2022March 2, 2024

    You can use a string for various tasks that an integer cannot. For instance, concatenation, identifying a substring, and so on. Let’s say we wish to concatenate two integers or see if an integer has a digit; if we used numerical operations, this would be a pain. Converting a number to a string, on the other hand, makes things easier.

    Read More How to convert an integer to a string in JavaContinue

  • Converting character array to string
    Java

    How to convert character array to string in Java

    ByLucy March 20, 2022March 2, 2024

    A string is defined as a collection of characters. A character array differs from a string in that the string is terminated with the special character “\0.” A string is transformed from a character array and vice versa. We’ll consider converting a character array to a string in this article.

    Read More How to convert character array to string in JavaContinue

  • Converting List to Array Java
    Java

    Convert List to Array in Java

    ByLucy March 20, 2022March 2, 2024

    In Java, there are numerous instances where you must transform a list into an array. For example, a function only accepts an array as a parameter instead of a collection.

    Read More Convert List to Array in JavaContinue

  • Python string contains a substring
    Python

    Methods to check if a Python string contains a substring

    ByHumphrey March 17, 2022March 2, 2024

    Strings are a collection of characters enclosed in single or double quotes in Python. You may need to verify if a string contains a substring during various string manipulation operations. Further, you may check if a string contains a substring using the IN keyword and the IF statement.

    Read More Methods to check if a Python string contains a substringContinue

  • create Rest APIs Django
    Django

    How to create REST APIs in Django

    ByHumphrey March 17, 2022March 2, 2024

    Django makes creating a REST API a breeze. We’ll walk you through the steps to get your first API up and operating in this tutorial.

    Read More How to create REST APIs in DjangoContinue

  • Creating Custom mixins in Django
    Django

    How to create Custom mixins in Django

    ByHumphrey March 17, 2022March 2, 2024

    This article seeks to leverage Django’s mixins to create solid and flexible models. A mixin is a unique type of multiple inheritances. Mixins are typically employed in one of two scenarios:

    Read More How to create Custom mixins in DjangoContinue

  • Custom Signals in Django
    Django

    Custom Signals in Django

    ByHumphrey March 17, 2022March 2, 2024

    Django comes with many features out of the box, and they’re all ready to use and combat tested. But, on the other hand, Django signals are one of the most underappreciated out-of-the-box capabilities Django offers. Django Signals is a technique for notifying detached applications when particular events occur.

    Read More Custom Signals in DjangoContinue

  • Building your first machine learning
    Machine Learning

    Building your first machine learning model using Iris dataset

    ByLucy March 11, 2022March 2, 2024

    This post will teach you how to create your first machine learning model in Python. In addition, we’ll be creating regression models with traditional linear regression and additional machine learning algorithms in particular.

    Read More Building your first machine learning model using Iris datasetContinue

Page navigation

Previous PagePrevious 1 … 9 10 11 12 13 … 32 Next PageNext
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy

© 2025 Code Underscored. All Rights Reserved.

A PART OF VIBRANT LEAF MEDIA COMPANY.

  • Python
  • Django
  • Web Development
  • Machine Learning
  • C++
  • Java
Search