Q. Display and print the given values:

(i) 33 + 23
(ii) S = 24 + 9 (first assign 24 + 9 to S and then print (display S))
(iii) a = 3, b = 17, c = b - 10 (first assign these values to a, b and c in three separate statements and then print/display them.)


Answer =

(i)
>>> 33 + 23
56
>>>

(ii)
>>> S = 24 + 9
>>> print (S)
33
>>>

(iii)
>>> a = 3
>>> b = 17
>>> c = b - 10
>>> print (a , b , c)
3 17 7
>>>

19 Comments

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

  1. where can i find preeti arora's computer science with python PDF

    ReplyDelete
  2. where will i find the practical book solutions?

    ReplyDelete
    Replies
    1. I have uploaded chick on chapter then chick on Practical.

      Delete
  3. where we will find type B and C solution of sumita arora's book?

    ReplyDelete
  4. Actually class 11 computer science practical book are not given you full solution where I can find full all questions solution

    ReplyDelete
  5. This comment has been removed by the author.

    ReplyDelete
  6. Brother where can i find the dolutions of the working in script mode of this book

    ReplyDelete
  7. When I will find the solution of practicle solutions

    ReplyDelete
    Replies
    1. Click on particular chapter name to get answer .

      Delete
  8. COULD YOU PLEASE HELP ME IN GETTING THE PDF TEXT BOOK OF INFORMATICS PRACTICES(PYTHON) BY SUMITA ARORA

    ReplyDelete

Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post