i = 1
while i < 10001:
total = 0
x = 1
while x < i:
if i % x == 0:
total += x
x+=1
if total == i:
print(str(i)+" is a perfect number")
i += 1
When you run this code, you'll see that 6, 28, 496, and 8128 are all perfect numbers.
<em>Try this one</em>
<em>Go to the References tab, click Insert Table of Figures, place the cursor, and click Insert.</em>
<em>I am not tht smart at computer stuff but let me know if this works.</em>
<em />
Answer:
. go to a page you wanna bookmark, and click the little star icon :)
It is important to know template specifics, such as
horizontal or vertical menu layout before sketching a navigation menu
flowchart. Conceptualize a navigation structure that is highly organize so that
you have a professional outlining program that is accessible and convenient
when you guide visitors through your material.
In Linux we use the terminal to create files and folders.
To create a folder:
1. Open a terminal
2. Go to a directory where you want to create the folder
3. Use the change directory command to go to the directory.
4. Use the mkdir command to make a folder
To create a file:
1. Open a terminal
2. Go to a directory where you want to create a file.
3. use the touch command followed by the filename.
Example to create a directory:
mkdir foldername
Example to create a file:
touch file.txt