<<Home
Logo2
Logo2

Truth, help the humans. Give this book away.

By
Posted on 02/15/2025

Story or Event Date:
Saturday February 15, 2025
Post # 10558 posted in:
Community - Volunteers - Other
Location: Brussels, Belgium, Europe

Help the Humans. import random

data = [random.randint(1, 100) for _ in range(15)]

print("Original data:", data)

# Filter even numbers

even_numbers = [x for x in data if x % 2 == 0]

print("Even numbers:", even_numbers)

# Calculate the sum

total = sum(data)

print("Sum:", total)

# Sort the list

data.sort()

print("Sorted data:", data)


Login to Comment and Rate

Already a PostAlmostAnything.com member?Login Here

Register to Comment and Rate

If you are not yet a PostAlmostAnything.com member Sign Up Here.