Difference between revisions of "Code Snippet: Random Fractions"

From Coder Merlin
(Created page with "= Generate a Random Fraction = == Swift == <syntaxhighlight lang="swift"> // Generate a fraction and print the result let fraction = Float.random(in: 0 ..< 1) print(fraction)...")
(No difference)

Revision as of 17:41, 24 December 2018

Within these castle walls be forged Mavens of Computer Science ...
— Merlin, The Coder

Generate a Random Fraction[edit]

Swift[edit]

// Generate a fraction and print the result
let fraction = Float.random(in: 0 ..< 1)
print(fraction)

Python[edit]