Please enable JavaScript to use CodeHS

Want to receive Question of the Day updates? Subscribe Here

Python Question of the Day Feb. 7, 2025

  1. Incorrect Correct No Answer was selected Invalid Answer

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

    name = "Samantha"
    nickname = "am"
    proper_name = name[0]
    
    print(proper_name + nickname)
    Python