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
| city | country | temperature | |
|---|---|---|---|
| Paris | France | 25 | |
| New York | USA | 23 | |
| Berlin | Germany | 22 | |
| Bangkok | Thailand | 35 |
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
| Lisbon | 28 | Sunny | |
|---|---|---|---|
| Paris | 15 | Rainy | |
| Tokyo | 12 | Windy | |
| New York | 15 | Sunny | |
| Toronto | 12 | Cloudy |
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
| continent | year | population | |
|---|---|---|---|
| Africa | 1990 | 0 | |
| Africa | 1991 | 5434 | |
| Africa | 1992 | 16232 | |
| Africa | 1993 | 48970 | |
| Africa | 1994 | 112387 | |
| Africa | 1995 | 324226 | |
| Africa | 1996 | 451060 | |
| Africa | 1997 | 905601 | |
| Africa | 1998 | 1703531 |
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 12 columns, instead of 11 in line 5.
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
| 1,DD37Cf93aecA6Dc,Sheryl,Baxter,Rasmussen Group,East Leonard,Chile,229.077.5154,397.884.0519x718,zunigavanessa@smith.info,2020-08-24,http://www.stephenson.com/ | |
| 2,1Ef7b82A4CAAD10,Preston,Lozano,Vega-Gentry,East Jimmychester,Djibouti,5153435776,686-620-1820x944,vmata@colon.com,2021-04-23,http://www.hobbs.com/ | |
| 3,6F94879bDAfE5a6,Roy,Berry,Murillo-Perry,Isabelborough,Antigua and Barbuda,+1-539-402-0259,(496)978-3969x58947,beckycarr@hogan.com,2020-03-25,http://www.lawrence.com/ | |
| 4,5Cef8BFA16c5e3c,Linda,Olsen,"Dominguez, Mcmillan and Donovan",Bensonview,Dominican Republic,001-808-617-6467x12895,+1-813-324-8756,stanleyblackwell@benson.org,2020-06-02,http://www.good-lyons.com/ | |
| 5,053d585Ab6b3159,Joanna,Bender,"Martin, Lang and Andrade",West Priscilla,Slovakia (Slovak Republic),001-234-203-0635x76146,001-199-446-3860x3486,colinalvarado@miles.net,2021-04-17,https://goodwin-ingram.com/ | |
| 6,2d08FB17EE273F4,Aimee,Downs,Steele Group,Chavezborough,Bosnia and Herzegovina,(283)437-3886x88321,999-728-1637,louis27@gilbert.com,2020-0 |
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
| Lisbon | 12 | sunny | |
|---|---|---|---|
| Paris | 15 | cloudy | |
| Tokyo | 20 | rainy |
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
| Call mum | |
| Groceries | |
| Go to the gym | |
| Record videos for SheCodes |
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 Weather: | |
| def __init__(self, city): | |
| self.city = city | |
| self.temperature = None | |
| self.condition = None | |
| def set_weather(self, temperature, condition): | |
| self.temperature = temperature | |
| self.condition = condition |
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 User: | |
| """ Define the User """ | |
| def __init__(self, name, year_of_birth): | |
| """Initialize the user""" | |
| self.name = name | |
| self.year = year_of_birth | |
| def century(self): | |
| """ Caculate the user century based on their year of birth""" | |
| if self.year < 2000: |
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 User: | |
| def __init__(self, name): | |
| self.name = name | |
| def greet(self): | |
| print(f"Welcome - {self.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
| from user import User | |
| class SpanishUser(User): | |
| def greet(self): | |
| print(f"Hola - {self.name}") |
NewerOlder