Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

Python Question of the Day March 3, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

    When it runs, what will the following program print to the console?

    string = "bnn"
    string_list = list(string)
    fruit = "a".join(string_list)
    print(fruit)
    Python