efotinis

1,656
Reputation
49 views

Registered User

Name efotinis
Member for 1 year
Seen 1 hour ago
Website
Location Greece
Age 31
Nov
20
accepted Problem retuning a vector from a c++ dll to another c++ exe
Nov
19
answered Problem retuning a vector from a c++ dll to another c++ exe
Oct
26
awarded  Nice Answer
Oct
14
comment Easy pretty printing of floats in python?
A generator expression would be even better: ", ".join("%.2f" % f for f in list_o_numbers)
Oct
7
comment How to write an empty indentation block in Python?
There's nothing wrong with that technically, but these situations is why 'pass' exists in the first place.
Oct
6
answered API for Giving Notification when a file is added or deleted in a folder
Sep
17
awarded  Yearling
Jul
29
comment Importing files in Python from __init__.py
If you want to do this for performance reasons, don't worry - importing already loaded modules is super-fast (a simple dict lookup on sys.modules).
Jul
19
awarded  Nice Answer
Jun
18
answered python file size
Jun
18
comment How do I convert a nested tuple of tuples and lists to lists of lists in Python?
When you need to check an object's type, it's better to use the isinstance() function. As a bonus, you can even check for multiple types at once, like this: isinstance(t, (list, tuple))