On Sunday, 22 July 2018 10:24:55 UTC+5:30, Cameron Simpson wrote:
> On 21Jul2018 21:33, Sharan Basappa wrote:
> >I get a lot confused while using print functions in Python.
> >
> >For example, I get the same results for the following code:
> >
> >str = "one two three"
>
> Pleasetry not to name v
On 22/07/18 06:54, Cameron Simpson wrote:
> On 21Jul2018 21:33, Sharan Basappa wrote:
>> I get a lot confused while using print functions in Python.
>>
>> For example, I get the same results for the following code:
>>
>> str = "one two three"
>
> Pleasetry not to name variables after builtin clas
On 21Jul2018 21:33, Sharan Basappa wrote:
I get a lot confused while using print functions in Python.
For example, I get the same results for the following code:
str = "one two three"
Pleasetry not to name variables after builtin classes ("str" is the name of
Python's string class).
prin
On Sun, Jul 22, 2018 at 2:53 PM, Abdur-Rahmaan Janhangeer
wrote:
> *Folks,I get a lot confused while using print functions in Python.For
> example, I get the same results for the following code:str = "one two
> three"print strprint "%s" %(str)So, what is the need to use the second
> method which I
*Folks,I get a lot confused while using print functions in Python.For
example, I get the same results for the following code:str = "one two
three"print strprint "%s" %(str)So, what is the need to use the second
method which I see being used in many programs I am referring to*
well
1) that is more
Folks,
I get a lot confused while using print functions in Python.
For example, I get the same results for the following code:
str = "one two three"
print str
print "%s" %(str)
So, what is the need to use the second method which I see being used in many
programs I am referring to
--
https:/