1
edit
Jaredsampson (talk | contribs) m (→Simple rules for Scheme to Python translations: changed word order for clarity) |
|||
Line 377: | Line 377: | ||
Here some simple rules how to translate from Scheme to Python. To translate the other way around, i.e. Python to Scheme, just turn the rules around: | Here some simple rules how to translate from Scheme to Python. To translate the other way around, i.e. Python to Scheme, just turn the rules around: | ||
# | # Replace all '-' with '_' (except in equation when you need arithmetic '-' minus signs) | ||
# | # Move the brackets around the argument(s) | ||
# | # Separate multiple arguments by commas rather than spaces | ||
# | # Replace 'define' with 'def' for functions and with '=' for assignments | ||
# Make sure to use indentation for the function content [Python is indentation sensitive] and a ':' after the function definition. | # Make sure to use indentation for the function content [Python is indentation sensitive] and a ':' after the function definition. | ||
edit