Computer Science, asked by radhathanneerus, 6 hours ago

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 vanu73
2
Sorry idk kdkxkskzowlspalqlpzqllsossowkososl3xos
Answered by Jasleen0599
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 -

  1. delim - X
  2. "text" - text
  3. 'delim' - X (character format)
  4. "delim" - delim ("__" means string)
  5. str(93.2) (printing number as string)
Similar questions