Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Python IDLE intellisense not working on MacPro ?
Post: RE: Python IDLE intellisense not working on MacPro...

Installed by running: pip install ptpython Launched by running: ipython import sys sys.<HIT TAB>It works. Not as effectively as the Python IDLE in Windows OS but it does help. Thanks!
Devarishi News and Discussions 7 3,682 Jun-21-2019, 11:18 AM
    Thread: Python IDLE intellisense not working on MacPro ?
Post: RE: Python IDLE intellisense not working on MacPro...

(Jun-19-2019, 04:34 PM)snippsat Wrote: (Jun-19-2019, 11:10 AM)Devarishi Wrote: I have tried Sublime too. The Intellisence does not work.Should work in Sublime,try VS Code(Free open source) which i...
Devarishi News and Discussions 7 3,682 Jun-21-2019, 10:25 AM
    Thread: Python IDLE intellisense not working on MacPro ?
Post: RE: Python IDLE intellisense not working on MacPro...

Hi, I have tried Sublime too. The Intellisence does not work. I import a module such as "sys" and then type something like: sys. and nothing pops up to show what methods / properties are available...
Devarishi News and Discussions 7 3,682 Jun-19-2019, 11:10 AM
    Thread: Python IDLE intellisense not working on MacPro ?
Post: Python IDLE intellisense not working on MacPro ?

I am using Python IDLE 3.7 for Windows 7. When I launch the IDLE and use the dot sign (.) after a module or class its associated methods or functions are shown in a list. However, this is not happen...
Devarishi News and Discussions 7 3,682 Jun-17-2019, 04:56 PM
    Thread: Floor Division cf. math.floor()
Post: RE: Floor Division cf. math.floor()

Thanks for the help! :) I did Google it but my head started to ache with other related mathematical terminologies such as minus infinity or negative infinity. :) So, when we are developing a busines...
Devarishi General Coding Help 3 2,236 May-22-2019, 04:04 AM
    Thread: Floor Division cf. math.floor()
Post: Floor Division cf. math.floor()

Hi, A bit of confusion here: >>> 1 / 0.2 5.0That is perfect, but this floor division thing looks confusing: >>> 1 // 0.2 4.0because math.floor() returns: >>> math.floor(...
Devarishi General Coding Help 3 2,236 May-22-2019, 03:27 AM
    Thread: Decorator staticmethod Use Cases
Post: RE: Decorator staticmethod Use Cases

@Yoriz @ichabod801 Thanks to both of you for your generous explanations of the concept in question. The example given has helped me understand it better. Regards, Dev.
Devarishi General Coding Help 3 2,658 May-20-2019, 04:27 AM
    Thread: Decorator staticmethod Use Cases
Post: Decorator staticmethod Use Cases

A method defined inside a class with the decorator @staticmethod can be executed without creating a class object. However, the same can be done even if the decorator was not used: className.MethodNam...
Devarishi General Coding Help 3 2,658 May-18-2019, 08:07 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020