Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #72.8K
Ranked #4K
~4K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for deonis

You can generate any unicode code point (in any language) by looking up the character code in the unicode chart, and keying the number into the string. For example, the code for Greek upper case Pi is 03A0 (the values are in hexidecimal) and lower case is 03C0. so you …

Member Avatar for deonis
0
211
Member Avatar for curiouskitten

I liked the Dive Into Python example, but felt it was incomplete. I recently published a different way of doing the same thing. This one defines a class (roman.Roman) so you can add and subtract roman numbers and print them out directly. [CODE] >>>import roman >>>two = roman.Roman(2) >>>print two …

Member Avatar for vernondcole
0
4K

The End.