Estudos de Números com Python
In [1]:
#soma
5 + 5
Out[1]:
In [2]:
#divisão
10 / 2
Out[2]:
In [3]:
#modulo - resto da divisão
10 % 3
Out[3]:
In [4]:
#potência
4 ** 2
Out[4]:
In [5]:
#subtração
3-1
Out[5]:
Função Type - retorna o tipo do valor ou da váriavel
In [6]:
type(1)
Out[6]:
In [7]:
a="Eu sou uma String"
type(a)
Out[7]:
In [8]:
type(5.0)
Out[8]:
Operações Matemáticas com Float
In [12]:
#interio com interio retorna inteiro com ou uma barra
4 / 2
Out[12]:
In [10]:
#retonra inteiro com duas barras
5 // 2
Out[10]:
In [13]:
#inteiro com float retorna float
5/2.0
Out[13]:
In [14]:
#não retorna o número após a virgula
5//2.0
Out[14]:
Conversão
In [15]:
float(10)
Out[15]:
In [16]:
int(5.9)
Out[16]:
Hexadecimal e Binarios
In [17]:
hex(10)
Out[17]:
In [19]:
bin(10)
Out[19]:
Funções abs(),round() e pow()
In [20]:
#função abs() retorna o valor absoluto
abs(-10)
Out[20]:
In [22]:
#função round() arredondamento de números
round(50.1231234,2)
Out[22]:
In [23]:
#calculando potência
pow(4,2)
Out[23]:
In [ ]: