I am puzled about numbers
A Evans
ae
Mon Apr 12 16:43:42 EDT 2004
More information about the Python-list mailing list
Mon Apr 12 16:43:42 EDT 2004
- Previous message (by thread): maximum length of a list & tuple
- Next message (by thread): I am puzled about numbers
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hello I came across an interesting loop in math today To me its interesting anyway I don't know if it will interest you var = 999 % 333 print var >>> 0 var = 9999 % 333 print var >>> 9 var = 99999 % 333 print var >>> 99 var = 999999 % 333 print var >>> 0 var = 9999999 % 333 print var >>> 9 var = 99999999 % 333 print var >>> 99 var = 999999999 % 333 print var >>> 0 and so on I guess that just goes to show nine is a universal number or am I just completely insane and everyone knows this already
- Previous message (by thread): maximum length of a list & tuple
- Next message (by thread): I am puzled about numbers
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list