"남편은 프로그래머였다" - 중독성 강한 코딩 댓글....ㅋㅋ
ㅋㅋㅋ.... 은근 중독성에 다 보게 됨... ㅋㅋ
---------------------------------------------------------------
A wife asks her husband, "Could you please go shopping for me and buy one carton of milk, and if they have eggs, get 6."
A short time later the husband comes back with 6 cartons of milk. The wife asks him, "Why did you buy 6 cartons of milk?"
He replied, "They had eggs."
totalCartonsofMilk = 1If(eggs) {totalCartonsofMilk = 6}return totalCartonsofMilk
var totalCartonsOfMilk = hasEggs()? 6 : 1;
해결책까지 제시해줌
What the wife actually said:
.#!/usr/bin/env pythonfrom SuperMarkets import check_out, find_markets, inventorydef run_errand(milk, eggs): shopping_cart = [] if 'milk' in inventory and 'eggs' in inventory: shopping_cart.append(milk * 6) elif 'milk' in inventory and 'eggs' not in inventory: shopping_cart.append(milk) else: print 'Store has no milk. Try another.' find_markets() check_out(shopping_cart)if __name__ == '__main__': run_errand(milk='milk', eggs='eggs').
What the wife should have said to her programmer husband:
.#!/usr/bin/env pythonfrom SuperMarkets import check_out, find_markets, inventorydef run_errand(milk, eggs): shopping_cart = [] if 'milk' in inventory and 'eggs' in inventory: shopping_cart.append(milk + eggs) elif 'milk' in inventory and 'eggs' not in inventory: shopping_cart.append(milk) elif 'eggs' in inventory and 'milk' not in inventory: shopping_cart.append(eggs) print 'Buy eggs, then go to another store for milk.' find_markets() else: print 'Store has no eggs or milk. Try another.' find_markets() check_out(shopping_cart)if __name__ == '__main__': run_errand(milk='milk', eggs='eggs' * 6)
한국에서는 싸움남 ㅋㅋㅋㅋ

댓글 10개
진짜 미쳤다 곧휴가 아주 녹는다 녹아~
https://linktr.ee/ORGASM.com
그러니까 남편은 "계란"을 if문의 조건문으로 봤기 때문에 그냥 확인용이고,
실행문인 "우유"만을 사온 거 같아요. 이게 실제 액션이니... 그것도 6개나...ㅎㅎ
operator의 우선순위를 결정지어줬어야했는데...