Is there a way to make each option in the user input its own line instead of being all bunched up like it is. For example
1 - game_dev
2 - etc
3 - etc
4 - etc
5 - etc
# specialty options to choose from for our recommendation.
game_dev = "c#"
web_dev = "html and CSS"
scientific = "python"
scripting = "lua"
mobile_dev = "swift"
# Collect user attributes to inform our recommendation.
specialty = input("Please chose 1 - 5 on your specialty 1 - game_dev, \
2 - web_dev, 3 - scientific, 4 - scripting, 5 - mobile_dev: ")
Thank you both for your responses. I tried both and “”" worked for me. For whatever reason on the Khan Academy interactive IDE /n doesn’t seem to work.