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
| license: mit |
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
| <div class="container"> | |
| <div class="jumbotron"> | |
| <div class="row"> | |
| <div class="col-xs-12"> | |
| <h1 class="text-center">Sir Alexander Fleming</h1> | |
| <h2 class="text-center"><em>Accidental discovery that revolutionized modern medicine</em></h2> | |
| <div class="thumbnail"> | |
| <image class= "image-responsive center-block" src="http://media.gettyimages.com/photos/sir-alexander-fleming-noted-bacteriologist-and-joint-winner-of-the-picture-id3349063?s=612x612"/> | |
| <div class="caption text-center">Sir Alexander Fleming (1881-1955), noted bacteriologist and joint winner of the 1945 Nobel Prize for Medicine, at work in his laboratory in the Wright-Fleming Institute. Fleming's most famous contribution to medicine was the accidental discovery of penicillin in 1928. | |
| </div> |
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
| <div class="container"> | |
| <div class="jumbotron"> | |
| <div class="row"> | |
| <div class="col-xs-12"> | |
| <h1 class="text-center">Sir Alexander Fleming</h1> | |
| <h2 class="text-center"><em>Accidental discovery that revolutionized modern medicine</em></h2> | |
| <div class="thumbnail"> | |
| <image class= "image-responsive center-block" src="http://media.gettyimages.com/photos/sir-alexander-fleming-noted-bacteriologist-and-joint-winner-of-the-picture-id3349063?s=612x612"/> | |
| <div class="caption text-center">Sir Alexander Fleming (1881-1955), noted bacteriologist and joint winner of the 1945 Nobel Prize for Medicine, at work in his laboratory in the Wright-Fleming Institute. Fleming's most famous contribution to medicine was the accidental discovery of penicillin in 1928. | |
| </div> |
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
| # This program asks the user to input employees information, name, id number, shift, and hourly wage, | |
| # then stores the information in a list | |
| # Creates the Employee superclass and initializes the name and idNumber attributes | |
| class Employee: | |
| # init method initializes the name and id attributes | |
| def __init__(self, name, idNumber): | |
| self.__name = name | |
| self.__idNumber = idNumber |