Creating a User Interface in Python 1

--Originally published at Ed_Alita

In this tutorial I will teach you how to create a user interface. But first lets define what does this is? The user interface is creted for authorizing a register user to enter to a certain program or page.

Creating first Menu

The first thing is to open a new document of python an called menu1.

Then define a funtion called menu().

menu1

If you run it it should displate this:

menuex1

Implementing this menu to select action

The first thing to create is a another document called Main.

Then import the menu1.

Then put menu1.menu()

After that put opcion = input(“Inserta un numero valor >> “)

opcion1

This is what is should display:

opcionex1

This all for today expect for tommorow for the next part of this project.