Assigning datatype to variable in python

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Raviexact
    New Member
    • Mar 2014
    • 5

    #1

    Assigning datatype to variable in python

    Hi,

    I've created new signal , where i specify list and object datatype.

    dataChanged = QtCore.Signal(l ist, object)

    But list and object datatype don't convey properly that what will be in list and in the object.
    So it would be good if we could declare something like this,

    dataChanged = QtCore.Signal(l st_employees, obj_sender)

    so that, if anyone sees the code, would understand easily. But i don't know it's possible in Python or not.

    But i have done something like this, i don't know this is correct or not

    lst_employees = list
    obj_sender = object

    dataChanged = QtCore.Signal(l st_employees, obj_sender)


    Is this right and pythanic way to use ? Please guide me.


    Thanks
    Ravi
  • bvdet
    Recognized Expert Specialist
    • Oct 2006
    • 2851

    #2
    Generally, you cannot change the expected argument data type when creating an instance in Python.

    Comment

    Working...