>>> import numpy as np
>>> import pylab
>>> n = 5
>>> print("Hello"*n)
HelloHelloHelloHelloHello
>>> x = 3
>>> y = 8
>>> """swapping x and y"""
>>> x, y = y, x
>>> some_list = [2, 4, 6, 8]
>>> some_list_copy = some_list.copy()
>>> some_list_copy[0] = 100
>>> print(some_list)
[2, 4, 6, 8]
>>> print(some_list_copy)
[100, 4, 6, 8]
>>> 2**5
32
>>> some_list = [1, 2, 3, 4, 5]
>>> reversed = list(reversed(some_list))
>>> print(reversed)
[5, 4, 3, 2, 1]
>>> multiply = lambda a, b: a * b
>>> print(multiply(6, 2))
12
>>> """is the same as"""
>>> def multiply (a, b):
... return a * b
>>> print(multiply(6, 2))
12
>>> sentence = ['wow', 'thats', 'handy']
>>> print('-'.join(sentence))
wow-thats-handy