Fwd: jupyter not install sucessfully

2019-11-01 Thread Shubham Tomar
-- Forwarded message -
From: Shubham Tomar 
Date: Fri, 1 Nov 2019 at 13:58
Subject: jupyter not install sucessfully
To: 


Dear sir,
i have installed python and then pip , after that i installed jupyter using
pip in command prompt. But jupyter can't start and give " external and
internal" error in cmd. I also install Anaconda but it shows Kernel error :
DLL load failed - The specified procedure not found etc.I also use pip but
didn't work yet.
I am using Windows 7 but i was try this in windows 10 and still i faced
this error.

  Kindly please help me.
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Writing Python File at Specific Interval

2014-07-09 Thread Shubham Tomar
Hi Subhabrata,

You can use open(name, 'w'), which creates the file if the file does not
exist, but it will truncate the existing file. Alternatively, you can use
open(name, 'a'); this will create the file if the file does not exist, but
will not truncate the existing file.

Ref.: open() 

Regards,
Shubham


On Wed, Jul 9, 2014 at 8:06 PM,  wrote:

> Dear Group,
>
> I am trying to write a file, which would create a new file name
> as the code runs.
>
> The code (a basic crawler) would run every morning
> or evening, on a predefined time. [This part is fine].
>
> In the next part, I am trying to store the daily
> results to a new file.
>
> As I researched I found some tips around time module,
> logging module, pythoncom etc. But not getting any important
> lead.
>
> If any one of the esteemed members may kindly suggest.
>
> Regards,
> Subhabrata Banerjee.
> --
> https://mail.python.org/mailman/listinfo/python-list
>
-- 
https://mail.python.org/mailman/listinfo/python-list


Python Classes

2014-08-04 Thread Shubham Tomar
Hi,

Python is the first programming language that I'm learning.
I'm confused by the idea of classes and intimidated by syntax defining
classes. I understand that you define classes to have re-usable methods and
procedures, but, don't functions serve the same purpose.
Can someone please explain the idea of classes and what *things *like
"__init__", "Object" and "self" mean ?

Thanks
-- 
https://mail.python.org/mailman/listinfo/python-list