Programming Pandit

c/c++/c#/Javav/Python


Latest Update

Wednesday, September 9, 2020

Python program to print number and string together by G Krishna Chauhan

  


Source Code

>>> a=9 
>>> b=18 
>>> a 
>>> b 
18 
>>> st="Programming Pandit" 
>>> print(st,"value of b: ",a,"value of b: ",b) 
Programming Pandit value of b:  9 value of b:  18 
>>>









No comments:

Post a Comment