C-16-Q147mediumsingle_mcq
Which of the following CORRECTLY converts the string "3" to a float?
Which of the following CORRECTLY converts the string "3" to a float?
- a
int("3") - b
str("3") - c
float("3") - d
bool("3")
Which of the following CORRECTLY converts the string "3" to a float?
int("3")str("3")float("3")bool("3")