User Profile

Collapse

Profile Sidebar

Collapse
Abhays
Abhays
Last Activity: May 6 '19, 09:35 AM
Joined: Apr 17 '19
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Abhays
    replied to Is NumPy is better than Python list?
    NumPy, a Python package, has made its place in the world of scientific computing. It can deal with large data sizes, and also has a powerful N-dimensional array object along with a set of advanced functions.

    Yes, a NumPy array is better than a Python list. This is in the following ways:

    It is more compact.
    It is more convenient.
    It Is more efficiently.
    It is easier to read and write items with N...
    See more | Go to post

    Leave a comment:


  • Abhays
    started a topic Session engine in Django

    Session engine in Django

    How i can configure session engine in Django through File based sessions?
    See more | Go to post

  • Abhays
    replied to Debug a Python Program
    To start debugging, we first open the command prompt, and get to the location the file is at.

    Microsoft Windows [Version 10.0.16299.248]

    (c) 2017 Microsoft Corporation. All rights reserved.

    C:\Users\lifei> cd Desktop
    C:\Users\lifei\ Desktop>

    Then, we run the following command (for file try.py):

    C:\Users\lifei\ Desktop>python -m pdb try.py
    > c:\users\lifei\ desktop\try.py( 1)<module>()...
    See more | Go to post

    Leave a comment:


  • Abhays
    replied to Exception Handling
    in C
    Exception handling is one of the major Disadvantges of C programming language. C doesn't provide direct support to errors or exceptional handling. Since it is system programming language it does provide low level errors handling in the form of return values.
    C will return -1 or NULL, in the case of errors.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...