What is the output of delim = "X" print delim+"text"+delim+' delim'+"delim"+delim+ str(93.2)+delim a XtextXXdelimX93.2X XtextX delimXX93.2X XtextXdelimdelimX93.2X O XtextXdelimdelimX93X 0 None
Answers
Answered by
2
Sorry idk kdkxkskzowlspalqlpzqllsossowkososl3xos
Answered by
0
The correct option is (c) XtextXdelimdelimX93.2X.
Given: delim = "X"
Output of: print (delim+"text"+delim+' delim'+"delim"+delim+ str(93.2)+delim)
Solution:
Here, the commands will be printed as follows -
- delim - X
- "text" - text
- 'delim' - X (character format)
- "delim" - delim ("__" means string)
- str(93.2) (printing number as string)
Similar questions