Snippets tagged “to-string”
3 snippets use this tag.
- How do I print my Java object without getting "SomeType@2f92e0f4"?Java
To print a Java object in a more readable format, you can override the toString() method in your class.
- How to Convert Decimal to Hexadecimal in JavaScriptJavaScript
Read this tutorial and find the easiest way of converting the decimal number to hexadecimal in JavaScript. Also, find information about the number systems.
- Pretty-print an entire Pandas Series / DataFramePython
You can use the .head() method to print the first few rows of a Pandas Series or DataFrame in a "pretty" format.