Vidyalelo
Python · Q65

Formatting and Decorators

Programming · Python · question 65

Q65

What will be the output of the following Python code snippet? '%d %s %g you' %(1, 'hello', 4.0)

A.
Error
B.
1 hello you 4.0
C.
1 hello 4 you
Answer
D.
1 4 hello you

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board