From f3c720fed612687f29d7eabeb322133dfda8d52a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 13 May 2024 17:25:51 -0400 Subject: [PATCH] Create Leviticus --- Leviticus | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Leviticus diff --git a/Leviticus b/Leviticus new file mode 100644 index 0000000..c6fc961 --- /dev/null +++ b/Leviticus @@ -0,0 +1,31 @@ +23 + +import random + +def spiritual_gifts(): + # Define the community of believers + believers = [] + + # Initialize the gifts of the Spirit + possible_gifts = ["Prophecy", "Serving", "Teaching", "Exhortation", "Giving", "Leadership", "Mercy"] + gifts_of_spirit = {} + + # Populate the community with believers + for member in range(1, 101): + believers.append(f'Believer {member}') + + # Distribute spiritual gifts among believers + for believer in believers: + gift = random.choice(possible_gifts) + gifts_of_spirit[believer] = gift + + # Emphasize the unity of believers + body_of_believers = len(believers) + + # Highlight the message + print(f'In our community of {body_of_believers} believers, each is bestowed with a gift of the Spirit:') + for believer, gift in gifts_of_spirit.items(): + print(f'- {believer}: {gift}') + +if __name__ == "__main__": + spiritual_gifts()