Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
The data that saves into the excel file comes out like this
User Name	Password
User1	        password
ser1	        assword
er1	        ssword
r1	        sword
1	        word
	        ord
	        rd
	        d

instead of just being one entry

What I have tried:

The functions i used to save the entered data
def setCredentials(self):
    username = self.eUSER.get()
    password = self.ePASS.get()
    print("username", username)
    print("password", password)



def insert(self) :
    current_row = sheet.max_row
    if (self.eUSER.get() == "" and
        self.ePASS.get() == "" ):
       print("empty input")
       return
    else :
          sheet.cell(row=current_row + 1, column=1).value = self.eUSER.get()
          sheet.cell(row=current_row + 1, column=2).value = self.ePASS.get()
          self.eUSER.bind("<Return>", self.focusU)
          self.ePASS.bind("<Return>", self.focusP)
          self.eUSER.grid(row=1, column=1, ipadx="100")
          self.ePASS.grid(row=2, column=1, ipadx="100")
          sheet.column_dimensions['A'].width = 40
          sheet.column_dimensions['B'].width = 40
          sheet.column_dimensions['C'].width = 40
          sheet.cell(row=1, column=1).value = "User Name"
          sheet.cell(row=1, column=2).value = "Password"
          sheet.cell(row=1, column=3).value = "Security question"
          wb.save(r'C:\Users\Hennie\Desktop\new\sheet.xlsx')
    self.clear()
    self.eUSER.focus_set()
    self.insert()
    return

When button clicked to call the functions

self.LOGIN = tk.Button(self, text = "Create new user", fg="black", command =lambda :[self.setCredentials(), self.insert()])
Posted
Updated 31-Dec-19 11:40am

1 solution

Your code do not behave the way you expect, or you don't understand why !

There is an almost universal solution: Run your code on debugger step by step, inspect variables.
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't know what your code is supposed to do, it don't find bugs, it just help you to by showing you what is going on. When the code don't do what is expected, you are close to a bug.
To see what your code is doing: Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute.

Debugger - Wikipedia, the free encyclopedia[^]

Mastering Debugging in Visual Studio 2010 - A Beginner's Guide[^]
Basic Debugging with Visual Studio 2010 - YouTube[^]

27.3. pdb — The Python Debugger — Python 3.6.1 documentation[^]
Debugging in Python | Python Conquers The Universe[^]
pdb – Interactive Debugger - Python Module of the Week[^]

The debugger is here to only show you what your code is doing and your task is to compare with what it should do.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900