Someone who could help me in python to program this problem?

2

Write a program that returns the factorial and the exponent respectively of all the numbers of two lists. enter the elements of each list by keyboard. at the beginning ask how many elements will be entered in each list.

Hello! I've been doing this in Python:

lista1=[] 
lista2=[]

numero=int(input("Cuantos numeros ingresara a cada lista?:")) lista1=int(input("Ingresa los numeros para lista 1:")) 
lista2=int(input("Ingresa los numeros para lista 2:"))

for x in range (lista1): 
factorial=x*x-1 
lista1.append(input("lista 1:")) 
lista2.append(input("lista 2:"))
    
asked by NAYELI 03.11.2018 в 04:58
source

0 answers