Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

factors addition in pyhone

def factor(num):
  factor = [1]
  for i in range(2,num+1):
     if num%i==0:
         factor.append(i)
  return sum(factor)
Comment

factors addition in pyhone

print(factor(30))
Comment

PREVIOUS NEXT
Code Example
Python :: how to re run code in python 
Python :: get text from table tag beautifulsoup 
Python :: pydotprint 
Python :: save video cv2 
Python :: python replace newline 
Python :: extract last value of a column from a dataframe in python 
Python :: how to plotting points on matplotlib 
Python :: rearrange list 
Python :: python tkinter disable dropdown 
Python :: flask oneid 
Python :: how to get sum specific columns value in machine learning 
Python :: pyspark concat columns 
Python :: yesno django 
Python :: python open dicom 
Python :: add element to heap python 
Python :: exit python script 
Python :: perimeter of semicircle formula 
Python :: python open file same folder 
Python :: python multiply all elements in array by constant 
Python :: django template iterate dict 
Python :: convert dictionary to spark dataframe python 
Python :: change the style of notebook tkinter 
Python :: how to delete the last item in a list python 
Python :: python random phone number 
Python :: python how to make a server 
Python :: alarm when code finishes 
Python :: python insert image 
Python :: remove duplicates without changing order python 
Python :: vsc python close all functions 
Python :: ordered char list python 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =