본문 바로가기

전체 글

(249)
캐나다 세금 Top 10 주도 ('22년 기준) https://www.youtube.com/shorts/P6d0750Ixog  캐나다세금 Top 10 주도('22년 연봉 10,000 CAD 기준)
캐나다 대학교 TOP 10 & 등록금 https://www.youtube.com/shorts/yrOy8LpKheM
Python_G-006. 10 Basic Plot (with Matplotlib) Plot TypeDescription Line PlotPlots data points connected by straight linesScatter PlotPlots data points as individual dotsBar PlotPlots data as rectangular barsHistogramShows the distribution of a datasetPie ChartShows proportions of a wholeBox PlotDisplays the distribution of data based on a five-number summaryViolin PlotCombines a box plot with a kernel density plotHeatmapDisplays matrix data..
Python_G-005. Loop Type Loop TypeDescriptionExampleOutputFor LoopIterates over a sequence (e.g., list, tuple, string)fruits = ["apple", "banana", "cherry"] for fruit in fruits:     print(fruit) # Outputapplebananacherry While LoopRepeats as long as a condition is truecount = 0 while count     print(count)     count += 1# Output01234Nested LoopsLoop inside another loopnumbers = [1, 2, 3] letters = ['a', 'b', 'c'] for nu..
Python_G-004 : 10 basic operations & functions 10 Basic OperationsBasic math operations2 + 3, 5 - 1, 4 * 2, 8 / 2, 5 % 2   # output 1 Assign values to variablesa = 5, b += 3    # b = b+3c *= 2     # c = c*2 Compare valuesa == b    # equala != b     # not equala > ba  Logical operationsa and ba or bnot a Bit-level operationsa & b, `ab,a ^ b,~a,a > b`Test for membership in sequences'a' in 'abc', 3 not in [1, 2, 4] Compare object identitiesa is..
Python_G-003 : Variable Type Variable TypeDescriptionExampleintinteger-3, 0, 34, ...floatreal-23.43, 4.56 ...strstring"hello"boolTrue or FalseTrue or 1 , False or 0listsequence[1, 2, 3, 'four', 5.3]tuplesequence(1, 2, 3, 'four', 5.3)dictsequence{'key': 'value'}  ex)  {'name': 'Alice', 'age': 30, 'profession': 'Engineer'}setsequence{1, 2, 3, 'four', 5.3}  List vs (1D) arrayTypeBuilt-in Python data typeProvided by the NumPy l..
Python_G-002 : 10 basic Libraries NumPyNumerical computing and working with arrays- High-performance multidimensional array objects- Mathematical functions for fast operations on arraysPandasData manipulation and analysis- DataFrame for handling tabular dataFunctions for data cleansing, manipulation, and analysisMatplotlibCreating visualizations- Extensive plotting capabilities- Customizable plots including line, scatter, bar, h..
LOOK 패턴 원어민이 밥먹듯이쓰는 LOOK 패턴익히기 #영어회화 #뉘앙스영어 #미드쉐도잉   Look familiar to meLook friendly, drunk, terrificHow does it look?It looks good on youIt looks totally awesome on youIt looks ridiculousThis looks complicatedHe looks completely exhausted It is not as easy as it looks. : 보기보다 쉽지 않아. It is not as hard as it looks. : 보기보다 어렵지 않아. It is not as bad as it looks : 보기보다 나쁘지 않아.  Let's just hope it tastes as ..