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
| import weather | |
| import smtp | |
| ''' | |
| Send a greeting email to our customer email list | |
| with the daily weather forecast and schedule | |
| ''' | |
| def get_emails(): | |
| # Reading emails from a file |
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
| import java.util.*; | |
| public class PerceptronSimples{ | |
| public static void main(String[] args){ | |
| /** | |
| * Dados correspondem ao problema AND | |
| */ |
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
| package perceptron; | |
| import java.util.Random; | |
| /** | |
| * | |
| * @author Orhan Demirel | |
| */ | |
| public class Perceptron { |