
class IFTTD_Cap: def __init__(self): self.material = "quality_material" self.design = "colors_of_IFTTD_podcast" self.size = "adjustable_strap" self.protects_from = ["UV_rays", "rain"] self.for_people = ["morning_hackers", "night_coders"] def wear(self, weather): if weather == "SUNNY": return "Protecting from sun's UV rays!" elif weather == "RAIN": return "Keeping your hair dry!" else: return "Looking stylish in any weather!" def is_it_for_you(self, person_type): return person_type in self.for_people def purchase(self): print("Adding CAP_IFTTD to your wardrobe...") print("Happy coding!") # Usage: cap = IFTTD_Cap() weather_today = "SUNNY" # Or "RAIN" or anything else person = "morning_hackers" # Or "night_coders" print(cap.wear(weather_today)) if cap.is_it_for_you(person): cap.purchase() else: print("This cap suits everyone, especially coders!")

Si on a un sujet qui nous anime, c'est là où on est meilleurs et où on va jusqu'au bout.Voir l'épisode

Les fondamentaux sont finalement à peu de choses près, relativement les mêmes, qu'il y a 20 ans, qu'il y a 30 ans, qu'il y a 40 ans, ils ont relativement faiblement évolué.Voir l'épisode

La solution à tout, pour moi, c'est une complémentarité de technologie. Mais pour ça, il faut comprendre les limites de chacune.Voir l'épisode