Re: Using a Variable Inside the String

2019-05-06 Thread MRAB
On 2019-05-06 19:44, sveem...@gmail.com wrote: Hi all, I am new learner of python programming and I am into my basics. I got struck with the code in a sample program and refer the same with IDE and googling which did not help me for more than a day. What is wrong with my last 2 lines?

Re: CAD Application

2019-05-06 Thread Brian Oney via Python-list
FreeCAD is written in Python. It has a python interpreter. -- https://mail.python.org/mailman/listinfo/python-list

Re: Using a Variable Inside the String

2019-05-06 Thread Chris Angelico
On Tue, May 7, 2019 at 4:50 AM wrote: > > Hi all, > > I am new learner of python programming and I am into my basics. > I got struck with the code in a sample program and refer the same with > IDE and googling which did not help me for more than a day. > > What is wrong with my last 2 lin

Using a Variable Inside the String

2019-05-06 Thread sveemani
Hi all, I am new learner of python programming and I am into my basics. I got struck with the code in a sample program and refer the same with IDE and googling which did not help me for more than a day. What is wrong with my last 2 lines? what I am missing? ## my_name =

Re: CAD Application

2019-05-06 Thread Christian Gollwitzer
Am 06.05.19 um 07:23 schrieb Britto .: What are the frameworks available for developing a CAD application with Python? For 3D visualization VTK is your best bet. It can efficiently handle large data sets. Christian -- https://mail.python.org/mailman/listinfo/python-list

Re: CAD Application

2019-05-06 Thread Gary Herron
On 5/5/19 10:23 PM, britt...@gmail.com wrote: Hello All, What are the frameworks available for developing a CAD application with Python? Regards Britto Well, there's PythonCadhttps://sourceforge.net/projects/pythoncad/ It seems to have stopped development about 5 years ago, but it's still

How to create a boolean mask for the data arrays with uint16, int8 type?

2019-05-06 Thread blmadhavan
Hi, How can I create a boolean mask for the data arrays with integer type? I want to create a 'useSample' boolean array for masking or discarding the unwanted data from the array. [nr,nc] = np.shape(ftype) # useSamples = np.full((nr,nc), True, dtype=bool) I want to transform the following MA

CAD Application

2019-05-06 Thread Britto .
Hello All, What are the frameworks available for developing a CAD application with Python? Regards Britto -- https://mail.python.org/mailman/listinfo/python-list