Método p5.js TypedDict print()

El método print() de p5.TypedDict en p5.js se usa para imprimir todos los pares clave-valor actualmente presentes en el diccionario en la consola. Un par clave-valor es un conjunto de dos valores que se asignan entre sí. Se puede acceder a estos valores consultando este diccionario utilizando la parte clave del par. Un diccionario escrito puede almacenar varios pares clave-valor a los que se puede acceder mediante los métodos del diccionario.

Sintaxis: 

print()

Parámetros:  este método no acepta ningún parámetro.

El siguiente ejemplo ilustra el método print() en p5.js:

Ejemplo:

Javascript

function setup() {
  createCanvas(550, 300);
  textSize(16);
  
  let stringDict = 
      createStringDict("Tokyo", "37.26 million");
  text("New string dictionary created " +
       "with one key", 20, 20);
  
  // Getting the current size of the dictionary
  let currSize = stringDict.size();
  print("Printing " + currSize +
        " key-value pair(s):");
  
  // Printing all the values to console
  stringDict.print();
  text("Dictionary keys printed to console",
       20, 60);
  
  let tmpObj = {
    "Delhi": "25.87 million",
    "Shanghai": "23.48 million",
    "Mexico City": "21.34 million"
  };
  
  // Add the given key to the dictionary
  // specifying the key and value as an object
  stringDict.create(tmpObj);
  text("New keys added to the dictionary",
       20, 100);
  
  // Getting the current size of the dictionary
  currSize = stringDict.size();
  print("Printing " + currSize +
        " key-value pair(s):");
  
  // Printing all the values to console
  stringDict.print();
  text("Dictionary keys printed to console",
       20, 140);
}

Producción:

Editor en línea: https://editor.p5js.org/
Configuración del entorno: https://www.geeksforgeeks.org/p5-js-soundfile-object-installation-and-methods/
Referencia: https://p5js.org/ referencia/#/p5.TypedDict/imprimir

Publicación traducida automáticamente

Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *