Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- numeros = [2, 3, 5, 7, 11, 13]
- suma_cuadrados = sum(numero * numero for numero in numeros)
- print(suma_cuadrados)
- print('')
- # Comprueba si existen archivos Python
- # en un directorio dado:
- import os
- archivos = os.listdir('/usr/lib/python3.5/')
- if(any(nombre.endswith('.py') for nombre in archivos)):
- print('Existen archivos Python en el directorio dado.')
- else:
- print('No existen archivos Python en el directorio dado.')
- print('')
- datos = ('Python', 3.5, 'x64')
- print(','.join(str(elemento) for elemento in datos))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement