Question: QUESTION 6 You have a GET request with several name=value pairs attached to the URL. How would your web app code retrieve the value associated
QUESTION 6
You have a GET request with several name=value pairs attached to the URL. How would your web app code retrieve the value associated with the name 'year'?
| n = request.query.forms['year'] | |||||||||||||||||||||||||||||||||||
| n = request.forms['year'] | |||||||||||||||||||||||||||||||||||
| n = request.query['year'] | |||||||||||||||||||||||||||||||||||
| n = request.query.post['year']
QUESTION 10 You have a string assigned to a variable named saying. The string includes html tags, but you don't want the tags themselves displayed to the user. Which of the following would make this happen for you?
QUESTION 11 The '/' in a bottle route decorator is a shorthand symbol meaning _____.
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
