Skip to Search
Skip to Navigation
Skip to Content
Community
|
Code
|
Docs
|
Downloads
▼
Perl
Python
Tcl
Komodo IDE
|
more
▼
Lists
Support
PPM Index
PyPM Index
Welcome, guest
|
Sign In
|
My Account
|
Store
|
Cart
ActiveState Code
»
Recipes
Languages
Tags
Authors
Sets
Recipe 578937 revision 1
def mcd(a,b): r=a while (r): r=a%b; a=b; b=r return a print mcd(120,95)
« Back to Recipe 578937
History
revision 1
(9 years ago)
x
Undo