variable substation and assigning practice

PHOTO EMBED

Sat Jul 05 2025 14:42:52 GMT+0000 (Coordinated Universal Time)

Saved by @bobby #python

# Language codes include "pt" for Portuguese and "es" for Spanish.
print("Website Languages available"
+ "in Portuguese(pt) and Spanish(es) ")
print(" ")
subject = input("Enter a Subject: ")

print("Portuguese - pt" +
      "      "
     +"Spanish - es")
language_code = input("Enter Language: (es or pt):  ")
  




# Subjects can be math, science, computing, or humanities.
subject = "input"

url = "https://" + language_code + ".khanacademy.org/" + subject
print(" ")
print("Navigate to the page below!")
print(url)
content_copyCOPY