- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 5
- Posts with Downvotes
- 3
- Downvoting Members
- 5
9 Posted Topics
This is my CSS code [CODE]body{ background: white url(/image/bg.jpeg) repeat-x center top }[/CODE] HTML code [CODE]<!doctype html> <html> <head> <title>Page title</title> <link rel="stylesheet" type="text/css" href="style.css" / </head> <body> </body> </html>[/CODE] I don't why but the image doesn't show up. The image for the background is below [url]http://img704.imageshack.us/img704/2162/67726065.jpg[/url] Thanks in advance | |
Re: I noticed that when i posted programs on here people gave me their versions, and had import * def somethng_here(): while True: Try: pass except ValueError #or some other types of things liek that I don't understand how a function can be FALSE, as well as how these excepterrors...if you … | |
[CODE]def main1(f): return (f - 32) * 5.0 / 9.0 def main2(c): return 9.0 / 5.0 * c + 32[/CODE] the two function above convert fahrenheit and celsius I have to write a third function which calls the two functions above and allows the user to input to convert between … | |
i have to write a program that simulates the flipping of a coin. 1. the function should ask the user how many times the coin should be flipped 2. the program should display the poportion of times that the head and tails appeared. (for example if the user enters 10 … | |
I need to make a score table function which keeps a track of the points. the first player to reach 11 points wins, however the game must be won by aleast a 2 point margin. the players points should be displayed on two halves of the graphic window. for example: … | |
The function has two parameters, one giving the side-length and the other giving the length of the shortest line. The function should draw as many lines of the spiral that fit inside the window def spiral(lenght,side): for i in range(1,side+1,5): lenght.forward(i) lenght.right(90) I made a start of the code, please … | |
Trying to write a function but don't known how to start. trying to make a function that ask the user for the current population and displays the population after 1/2 years unitil it reaches 1 million at a rate of 8% per year. for example Year 1, population 864000 Year … | |
I am writing a function that has two parameters F & L and the function returns the sum of the squares of all the intergers between F & L e.g if i call def sum(3,5) should output 50 (9 + 16 + 25) def sum(first,last): sqaure = i for i … |
The End.