This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link | |
rel="stylesheet" | |
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" | |
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" | |
crossorigin="anonymous" | |
/> | |
<link | |
href="https://fonts.googleapis.com/css?family=Poppins:200i,300,400&display=swap" | |
rel="stylesheet" | |
/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Create a class Called Human. | |
class Human: | |
def __init__(self, name): | |
self.name = name | |
self.surname = surname | |
#This Method Prints the Human's Name. | |
def print_name(self): | |
print("Hello my name is {} {} !".format(self.name, self.surname)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
###Selecione a data de inicio da correlação - Ano/Mês/Dia | |
start = datetime(2019, 1, 1) | |
###Selecione as ações Ex: Ibovespa, Wege e Usiminas | |
symbols_list = ['^BVSP', 'WEGE3.SA', 'USIM5.SA'] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Male = Human('Jovani') | |
Male.print_name() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Human(): | |
def __init__(self, name): | |
self.name = name | |
def print_name(self): | |
print("Hello my name is {} !".format(self.name)) |