λ³Έλ¬Έ λ°”λ‘œκ°€κΈ°

λΆ„λ₯˜ 전체보기

(285)
my big five feedback The Big Five and the BFI-2 Based on decades of research, many personality researchers agree that the most important individual differences in people's personality traits are captured by five basic dimensions known as the "Big Five": Extraversion, Agreeableness, Conscientiousness, Negative Emotionality, and Open-Mindedness. The questionnaire you just completed is the Big Five Inventory–2, or BFI-..
(Higher-Order) Functions, Sequences, Recursion and TreeRecursion, Trees ( Higher - Order ) Functions Functions : a function is made up of a series of statements, and takes in an input and maps it to an output How we descrive functions : - domain : the set of possible inputs a function may take in - range : the set of possible output values a function may return - behavior : the relationship between input and output EXAM _ pay close attention to the specified domain ..
Iterators & Generators Iterators & Generators Definitions - Lazy evaluation : delays evaluation of an expression until its value is needed - Iterable : an ovject capable of returning its members one at a time. examples include all sequences ( string, list )and some non-sequence types ( dictionaries ) - Iterator : an object that provide sequenctial access to values, one by one ( all iterators are iterables. not all ite..
amazon prime day α••( α› )α•— λ‚˜μ˜ μ†Œλ“•ν•œ λ§₯뢁pro μ—κ²Œ μ˜·μ„ μž…ν˜€μ£Όμ–΄μ•Όν•˜λ‚˜ λ§μ•„μ•Όν•˜λ‚˜ κ³ λ―Όν•˜λŠλΌ μš”μ¦˜ 계속 Amazon을 λ“€λ½λ‚ λ½κ±°λ ΈλŠ”λ° 이 게 무 슨 일 이 람 ? κ°‘μžκΈ° μ–΄μ œλ³΄λ‹€ 가격이 λˆˆμ— λ„κ²Œ λ‚΄λ Έμ—ˆλ‹€. μ™œ κ·ΈλŸ°μ§€ μ•Œμ•„λ³΄λ‹ˆκΉŒ λ―Έκ΅­κΈ°μ€€ 7μ›” 15일과 16일이 amazon prime day라고 ν–ˆλ‹€. κ·Έλž˜μ„œ μ•„λΉ ν•œν…Œ λ°”λ‘œ 돈 μ’€ ,,, 더 보내달라고 λΆ€νƒν•˜κ³  ,,, amazon 쇼핑을 μ‹œμž‘ν–ˆλ‹€ 히히 ( 카톑에 λ‚˜μ™€μžˆλŠ” μ‹œκ°„ λ―Έκ΅­ μ„œλΆ€μ‹œκ°„μ΄λΌ ν•œκ΅­μ€ μ € λ•Œ 7μ›” 16일 μ˜€μ „ 5μ‹œ μ―€μ΄μ˜€μ„ν…λ° γ…œ λ”Έν•œν…Œ ν†‘μ˜€λ©΄ λ°”λ‘œ λ‹΅ν•΄μ£ΌλŠ” 딸바보 μ•„λΉ  γ…œ μ‚¬λž‘ν•΄μœ  ΰ·† ) μ§„μ§œ μ‚¬κ³ μ‹Άμ€κ²Œ λ§Žμ•˜μ§€λ§Œ 일단은 κΌ­ ν•„μš”ν•œκ±°λ§Œ κ²°μ œν•˜κΈ°λ£¨ ν•΄λ”°. μ™œλƒλ©΄ amazon prime dayλŠ” λ‚΄μΌκΉŒμ§€λ‹ˆκΉŒ ~ ? κ·Έλž˜μ„œ 였늘 κ²°μ œν•œ 것은 μš” μœ„μ—μ‚¬μ§„μ—μ„œλ„ λ³Ό 수 있..
BigPicture BigData The Big Picture : basic concepts and definitions of the big data approach Big Data _ research by private industry and government to create results and make money Today - Big data is everywhere my phone : navigation, Target app, Amazon, Facebook, real estate apps ( Zillow and Trulia ), Pandora credit scores : determine where you can get a loan and the rate, help determine whether you can rent a h..
LAB_day 6 Nonlocal def g(x) : def f(): x = 10 x = x + 2 f() print(x) g(20) def g(x): def f(): x = x - 8 f() print(x) g(20) By default, - you can access variables in parent frames - you cannot modify variables in parent frames nonlocal statements allow you to modify a name in a parent frame instead of creating a new binding in the current frame
Mutable Functions & Growth Mutable Values Identity vs. Equality in Environment Diagrams - Review : For assignment statements, evaluate the right side, then assign to the left - Copying : When creating a copy, copy exactly what's "in the box" Mutating Within Functions Mutable Functions Functions with behavior that changes over time : returns the same value when called with the same input : return values are different when ..
Week 4 Week 4 Resources http://www.tmmydngyn.me/cs61a/guides/mutability.html Mutability and Nonlocal Intro This is a brief guide meant to serve as an extension to our discussion about mutability and nonlocal. Before continuing, be sure to have a good understanding of the difference between expressions and values and what a name is. Names Let’s briefly rev www.tmmydngyn.me https://docs.google.com/presen..