Difference between revisions of "Code Snippet: Random Boolean"

From Coder Merlin
(Added Python Random Bool)
m (Updated Python snippet to match other snippet's layout)
 
Line 20: Line 20:
== Python ==
== Python ==
<syntaxhighlight lang="python">
<syntaxhighlight lang="python">
random.choice([True, False])
import random
 
headsOrTails = random.choice([True, False])
print(headsOrTails)
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 13:51, 13 September 2019

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

Generate a Random Boolean[edit]

Swift[edit]

// Simulate flipping a coin and print the result
let isHeads = Bool.random()
if isHeads {
    print("Heads")
} else {
    print("Tails")
}
// Simulate flipping a coin and print the result (with syntactic sugar)
let headsOrTails = Bool.random() ? "Heads" : "Tails"
print(headsOrTails)

Python[edit]

import random

headsOrTails = random.choice([True, False])
print(headsOrTails)