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 " ex

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

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()