HotelInfantesAgres - Bawat tanong, may sagot. Logo

In Computer Science / Senior High School | 2025-07-30

Instead of always pointing to the computing page, Sofia wants to let the user choose their subject. Subjects include math, science, computing, and humanities, where the names are in all lowercase letters. • Add a new input() prompt that asks the user to enter a lowercase subject name. • Modify the program to print the URL for the subject the user entered.You’ll need to assign the result of the input() call to the variable subject. When the program accesses subject to construct the url, it should contain the value the user entered.# Language codes include "pt" for Portuguese and "es" for Spanish.language_code = "es"# Subjects can be math, science, computing, or humanities.subject = input("subject:")url = "https://" + language_code + ".khanacademy.org/" + subjectprint("Navigate to the page below!")print(url)​

Asked by aikaa8353

Answer (1)

Answered by rosezysoledad | 2025-08-06