Study Note/Python25 1. Variable declaration and data types When learning Python, the most important thing is not to memorize all the code and concepts, but to improve the ability to become familiar with and utilize them in order to make the desired results. Here's an example regarding the most basic aspect of Python, which is inputting values: a = 3 print(a) b = a print(b) a = 5 print(a, b) # 5 3 # input value name = "jun " age = "18" # print the value.. 2024. 3. 25. 이전 1 2 3 4 5 다음