I have a DataFrame that looks something like this:
LeaveID EmployeeID Department      LeaveStartDate LeaveDuration Reason       Status   Remark
1       123474     Sales           2021-01-02     2             Annual Leave Pending 
2       123873     Human Resources 2021-01-02     2             Urgent Leave Approved Family Emergency
...
...
LeaveID is the index column of the data. I wish to append a row to this DataFrame using predetermined variables such as:
row = {
    'EmployeeID' : employeeID,
    'Department' : department,
    'LeaveStartDate' : startDate,
    'LeaveDuration' : duration,
    'Reason' : reason,
    'Status' : status,
    'Remark' : remark
}
How can I add a row to this DataFrame so that its index is automatically 1 larger than the current end of the DataFrame's row?
 
    