└── Vegen /Vegen: -------------------------------------------------------------------------------- 1 | # Define the total population of the planet 2 | total_population = 7.9e9 # 7.9 billion 3 | 4 | # Define the percentage of vegetarians in the world 5 | vegetarian_percentage = 8 # 8% 6 | 7 | # Calculate the number of vegetarians on the planet 8 | vegetarian_count = (vegetarian_percentage / 100) * total_population 9 | 10 | print(f"Estimated number of vegetarians on the planet: {vegetarian_count:.0f}") 11 | --------------------------------------------------------------------------------