Question # 1 Multiple Select Which of the following shows the assignment of a string to a variable? Select 3 options. answer = "23" answer = (23) answer = '23' answer 23 answer = input("How old are you?") ​

Respuesta :

Answer:

answer = input("How old are you?")

Explanation:

Answer is a variable The Input function takes a string

Answer:

  • answer = input("How old are you? ")
  • answer = '23'
  • answer = "23"

Explanation: Correct on Edg 2020/2021.