Ambiente Jupyter (console interativo)


In [1]:
1 + 1


Out[1]:
2

In [2]:
2 - 1


Out[2]:
1

In [3]:
2 * 3


Out[3]:
6

In [4]:
4 / 3


Out[4]:
1.3333333333333333

In [5]:
4 ** 2


Out[5]:
16

Posso chamar comandos Python (funções built-in)


In [6]:
print("Hello World")


Hello World

In [7]:
help(print)


Help on built-in function print in module builtins:

print(...)
    print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
    
    Prints the values to a stream, or to sys.stdout by default.
    Optional keyword arguments:
    file:  a file-like object (stream); defaults to the current sys.stdout.
    sep:   string inserted between values, default a space.
    end:   string appended after the last value, default a newline.
    flush: whether to forcibly flush the stream.

Variáveis (tags)


In [8]:
resultado = 10 + 2

In [9]:
print(resultado)


12

In [10]:
tmp = resultado
print(tmp)


12

In [11]:
resultado = 10 + 5
print(resultado)
print(tmp)


15
12

In [12]:
id(resultado)


Out[12]:
10106272

In [13]:
id(tmp)


Out[13]:
10106176

In [14]:
resultado = tmp
print(id(resultado))
print(id(tmp))


10106176
10106176

In [15]:
nome = "python"
print(nome)


python

In [16]:
nome = 'python'
print(nome)


python

In [17]:
type(resultado)


Out[17]:
int

In [18]:
type(nome)


Out[18]:
str

In [ ]: