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
| .mauticform_wrapper { | |
| max-width: 600px; | |
| margin: 10px auto; | |
| } | |
| .mauticform-innerform {} | |
| .mauticform-post-success {} | |
| .mauticform-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
| import turtle | |
| def draw_square(some_turtle): | |
| for i in range(1,5): | |
| some_turtle.forward(100) | |
| some_turtle.right(90) | |
| def draw_art(): | |
| window=turtle.Screen() |
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
| from datetime import date | |
| class Birthday(object): | |
| def __init__(self, year, month, day): | |
| self.dob = date(year, month, day) | |
| @property |
OlderNewer