Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3853266
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T17:26:35+00:00 2026-05-19T17:26:35+00:00

In Java, I can override the toString() method of my class. Then Java’s print

  • 0

In Java, I can override the toString() method of my class. Then Java’s print function prints the string representation of the object defined by its toString(). Is there a Python equivalent to Java’s toString()?

For example, I have a PlayCard class. I have an instance c of PlayCard. Now:

>>> print(c)
<__main__.Card object at 0x01FD5D30>

But what I want is something like:

>>> print(c)
A♣

How do I customize the string representation of my class instances?

I’m using Python 3.x

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T17:26:36+00:00Added an answer on May 19, 2026 at 5:26 pm

    The closest equivalent to Java’s toString is to implement __str__ for your class. Put this in your class definition:

    def __str__(self):
         return "foo"
    

    You may also want to implement __repr__ to aid in debugging.

    See here for more information:

    • Special Method Names – Basic Customization
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can you override method in java without using annotations? Because eclipse doesn't support it
It is consistently advised to override (implement) the toString() method of a class. The
I'm trying to override the toString method in Java to output from two arrays
In java can an instance variable and a method have the same name without
In Java you can do something like: byte[] code = ReadFromClassFile(SomethingSomething.class); SendAcrossNetwork(code); And on
In Java I can do by using an Iterator and then using the .remove()
I am trying to return a newly created java class object in native to
In Java, a class can never be qualified to be either private or protected.
Is there a method that I can override in my custom classes so that
I want to override toString() for my enum, Color . However, I can't figure

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.