A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
17
Task/Map-range/Python/map-range-2.py
Normal file
17
Task/Map-range/Python/map-range-2.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
>>> from fractions import Fraction
|
||||
>>> for s in range(11):
|
||||
print("%2g maps to %s" % (s, maprange( (0, 10), (-1, 0), Fraction(s))))
|
||||
|
||||
|
||||
0 maps to -1
|
||||
1 maps to -9/10
|
||||
2 maps to -4/5
|
||||
3 maps to -7/10
|
||||
4 maps to -3/5
|
||||
5 maps to -1/2
|
||||
6 maps to -2/5
|
||||
7 maps to -3/10
|
||||
8 maps to -1/5
|
||||
9 maps to -1/10
|
||||
10 maps to 0
|
||||
>>>
|
||||
Loading…
Add table
Add a link
Reference in a new issue