Re: property

2020-06-26 Thread Dieter Maurer
ast wrote at 2020-6-26 09:02 +0200: >Hello, > >I am wondering why this code is OK: > >class Temperature: > def __init__(self): > self.celsius = 0 > > fahrenheit = property() > > @fahrenheit.getter > def fahrenheit(self): > return 9/5*self.celsius +32 > > @fahrenheit.

Re: I need to study Python

2020-06-26 Thread Wesley Peng
Pick a book like Core Python Programming, read it and do coding follow it. regards. sinanp...@gmail.com wrote: Hey, I'm a completely noob. I want to learn python, how can i or where can i study python? -- https://mail.python.org/mailman/listinfo/python-list

Re: property

2020-06-26 Thread Peter Otten
Unknown wrote: > Hello, > > I am wondering why this code is OK: > > class Temperature: > def __init__(self): > self.celsius = 0 > > fahrenheit = property() > > @fahrenheit.getter > def fahrenheit(self): > return 9/5*self.celsius +32 > > @fahrenheit.setter > def f

Re: I need to study Python

2020-06-26 Thread J. Pic
What happens when people want to start a music instrument and start with pure theory, scales and modes, it's that the instrument ends up in a forgotten corner of the room because they are not having real fun with it. I would like to suggest that you start with a pet project, you can even start wit

Re: I need to study Python

2020-06-26 Thread Joel Goldstick
On Thu, Jun 25, 2020 at 8:18 PM Igor Korot wrote: > > Hi, > Just sign-up for a local community college. > Will be easier and u will keep motivation... > > Thank you. > > > On Thu, Jun 25, 2020, 6:49 PM wrote: > > > Hey, I'm a completely noob. > > I want to learn python, how can i or where can i s

Re: property

2020-06-26 Thread Barry Scott
> On 26 Jun 2020, at 08:02, ast wrote: > > Hello, > > I am wondering why this code is OK: > > class Temperature: >def __init__(self): > self.celsius = 0 > >fahrenheit = property() > >@fahrenheit.getter >def fahrenheit(self): > return 9/5*self.celsius +32 >

Re: Regarding error code 9

2020-06-26 Thread Igor Korot
Hi, On Fri, Jun 26, 2020, 1:17 AM Manikandan S wrote: > Sir/Mam; > While installing matplotlib in python i face this issue that it shows > error : erro no 9 please reply with some solution for this error i am > beginner so please explain in detail about this error and guide me to fix > thi

property

2020-06-26 Thread ast
Hello, I am wondering why this code is OK: class Temperature: def __init__(self): self.celsius = 0 fahrenheit = property() @fahrenheit.getter def fahrenheit(self): return 9/5*self.celsius +32 @fahrenheit.setter def fahrenheit(self, value