-
Notifications
You must be signed in to change notification settings - Fork 0
MustafaJP/Web-data-collection
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
num = 600851475
def isPrime(x):
for count in range(2, x):
if x % count ==0:
return False
return True
for x in range(num, 0, -1):
if num % x ==0:
if isPrime(x) == True:
print(str(x) + " is the lagest prime factor")
break
About
Using Python to gather data from any website on the explorer
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published