Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Impara Calculating and Formatting Dynamics | Strings Formatting
String Manipulation in Python

book
Calculating and Formatting Dynamics

Compito

Swipe to start coding

As of 2020, the USA population was 331002651, of which 273975139 -  urban population. The Urban population (%) is the proportion of the urban population to the total. Your tasks are:

  1. Print total and urban populations with commas every thousand;
  2. Calculate urban population (%), and print the result in the following format: 45.653%.

Soluzione

# Variables
population = 331002651
urban_pop = 273975139

# Formatting
print("USA Population: {0:,}, {1:,} of them - urban population.".format(population, urban_pop))
print("Urban population: {:.3%}".format(urban_pop/population))

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 3. Capitolo 9
# Variables
population = 331002651
urban_pop = 273975139

# Formatting
print("USA Population: {___}, {___} of them - urban population.".format(___, ___))
print("Urban population: {___}".format(___/___))
toggle bottom row
some-alt