No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
As the name suggests they are headings.There are 6 different headings in HTML.**H1,H2,H3...H6** and **H1** being biggest font of the heading and **H6** the smallest .They are used to structure your web page.
Hi! You should see Google's Python Class which should help you get started.Here is the link: http://code.google.com/edu/languages/google-python-class/
#Dictionary practice def menu(): print("1. Add name and number") print("2. Print the directory") print("3. Quit") options = 0 directory = {} while options < 3 : menu() options = int(input("Enter your desired option :")) if options == 1 : print("You selected to add name and number") name = input("Enter name …
The End.