100 Dias de Python con la comunidad de @PythonLaPaz
En la carpeta pruebas se encuentran practicas extra que he encontrado como complemento de practica a estos 100 dias del reto.
En Python las variable numericas son usadas para almacenar numeros. Los numeros son usualmente almacenados como Enteros o Numeros Reales
Integers o numeros enteros son aquellos numeros que no tienen decimales y pueden ser positivos o negativos, incluyendo al 0.
Los numeros enteros se representan en Python como int
Floating-point values Son aquellos numeros que tinen decimales. En Python se representan como float y la separacion entre la parte entera y la parte decimal se realiza con un punto.
type() method returns class type of the argument(object) passed as parameter. type() function is mostly used for debugging purposes.
Two different types of arguments can be passed to type() function, single and three argument. If single argument type(obj) is passed, it returns the type of given object. If three arguments type(name, bases, dict) is passed, it returns a new type object.
type(object) type(name, bases, dict)
Parameters : name : name of class, which later corresponds to the name attribute of the class. bases : tuple of classes from which the current class derives. Later corresponds to the bases attribute. dict : a dictionary that holds the namespaces for the class. Later corresponds to the dict attribute.
Syntax
slice(start, end, step)
Parameter Values
Parameter | Description |
---|---|
Start | Optional. An integer number specifying at which position to start the slicing. Default is 0 |
end | An integer number specifying at which position to end the slicing |
step | Optional. An integer number specifying the step of the slicing. Default is 1 |
Example
variable = "Germany'
print(variable[-3:])
amy
Syntax
slice(start, end, step)
Parameter Values
Parameter | Description |
---|---|
Start | Required. A String. The string to value to search for |
end | Optional. An Integer. The position to start the search. Default is 0 |
step | Optional. An Integer. The position to end the search. Default is the end of the string |
Example
# 100DiasDePython
# Dia_16
# Declara una variable de tipo cadena, encuentra la cantidad de veces que aparece la letra a
# Alberto Bueno (babuenop)#6398
variable = "Vamos a contar las letras a que aparecen en esta cadena"
print(variable.count('a'))
#Ressultado= 11
La función min() devuelve el menor valor de una lista, en el caso de cadenas devuelve el carácter con menor valor en orden lexicográfico La función max() hace lo mismo pero devuelve el carácter con mayor valor en orden lexicográfico
Example Declara una variable de tipo cadena, encuentra el primer y ultimo caracter en orden lexicografico sin usar ciclos e imprimelos cadena = "españa"
print (min(cadena) + max(cadena))