Control chars and special chars

Jeff Kunce kuncej at mail.conservation.state.mo.us
Thu Dec 16 10:38:49 EST 1999


> I want to use special chars. in my script, like the copyright sign or a
> block-like thing etc. I see Python has something like \013 for return
> etc. Is there a table containing the rest?

You can make your own table:
      for i in range(255): print i, chr(i)
Be warned that different fonts and character sets may produce different
results

  --Jeff







More information about the Python-list mailing list