How to build a phone register in python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

How to build a phone register in python?

I want to build a phone app in python to register the new contacts ( name, phone number, email) and save them into user1, user2 ...

24th Apr 2020, 12:00 PM
Karim gougue
Karim gougue - avatar
2 Answers
+ 2
It depends on the extent of your project. For example: >> CLI phone register. 1. take input 2. save it in an array. 3. create a do while loop for menu based program. >> CLI phone register with storage 1. Create a menu based program for entries. 2. Save them in a Database or file. 3. Read that file at the start of your program. >> GUI based phone register 1. Create utility functions for each module. 2. Create GUI using TKinter or QT. 3. Attach the utility function with GUI for functionalities. >> Web based phone register. 1. Use flask for backend and business logic of your program. 2. Use HTML5 and JS for frontend or any other specific frontend tech like React, Vue etc. 3. Use Rest APIs to connect frontend and backend. You can also use Django for web development.
24th Apr 2020, 2:02 PM
Arvind Singh Rawat
Arvind Singh Rawat - avatar
0
We can help you but it's better you try it yourself...
24th Apr 2020, 1:57 PM
Varun Vaswani
Varun Vaswani - avatar