Estudos de Números com Python


In [1]:
#soma
5 + 5


Out[1]:
10

In [2]:
#divisão
10 / 2


Out[2]:
5

In [3]:
#modulo - resto da divisão
10 % 3


Out[3]:
1

In [4]:
#potência
4 ** 2


Out[4]:
16

In [5]:
#subtração
3-1


Out[5]:
2

Função Type - retorna o tipo do valor ou da váriavel


In [6]:
type(1)


Out[6]:
int

In [7]:
a="Eu sou uma String"
type(a)


Out[7]:
str

In [8]:
type(5.0)


Out[8]:
float

Operações Matemáticas com Float


In [12]:
#interio com interio retorna inteiro com ou uma barra 
4 / 2


Out[12]:
2

In [10]:
#retonra inteiro com duas barras
5 // 2


Out[10]:
2

In [13]:
#inteiro com float retorna float
5/2.0


Out[13]:
2.5

In [14]:
#não retorna o número após a virgula
5//2.0


Out[14]:
2.0

Conversão


In [15]:
float(10)


Out[15]:
10.0

In [16]:
int(5.9)


Out[16]:
5

Hexadecimal e Binarios


In [17]:
hex(10)


Out[17]:
'0xa'

In [19]:
bin(10)


Out[19]:
'0b1010'

Funções abs(),round() e pow()


In [20]:
#função abs() retorna o valor absoluto 
abs(-10)


Out[20]:
10

In [22]:
#função round() arredondamento de números
round(50.1231234,2)


Out[22]:
50.12

In [23]:
#calculando potência
pow(4,2)


Out[23]:
16

In [ ]: