반응형

python/w3schools 11

[w3schools] Global Variables - Python Variables

Global Variables global 키워드는 가장 바깥의 이름 공간에 정의된 어떤 이름을 함수 안에서 그대로 쓸 수 있게 하는 키워드입니다. Variables that are created outside of a function (as in all of the examples above) are known as global variables. Global variables can be used by everyone, both inside of functions and outside. def를 이용해 function/함수를 만든다. Example Create a variable outside of a function, and use it inside the function x = "awesome" ..

python/w3schools 2021.05.31

[w3schools] Assign Multiple Values - Python Variables

One Value to Multiple Variables And you can assign the same value to multiple variables in one line: 파이썬은 여러 변수를 선언하는 것이 가능하다. var1, var2, var3 = 1, 2, "banana" Note: Make sure the number of variables matches the number of values, or else you will get an error. 주의 : 변수의 개수와 입력하는 값의 개수는 같아야 한다. 그렇지 않으면 오류 발생! 아니면 3개의 변수에 하나의 값을 입력하는 것도 가능하다. x = y = z = "Orange" print(x) print(y) print(z) Unpack ..

python/w3schools 2021.05.25

[w3schools] Variable Names - Python Variables

A variable name must start with a letter or the underscore character 변수이름은 반드시 문자나 _ 로 시작해야 한다. A variable name cannot start with a number 변수이름은 숫자로 시작할 수 없다. A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ ) 변수이름은 오직 알파벳 문자나 숫자 그리고 언더바(_)만 포함해야 한다. Variable names are case-sensitive (age, Age and AGE are three different variables) 변수이름은 대소문자를 구분한다. var1..

python/w3schools 2021.05.24

[w3schools] Python Variables - Python Variables

Creating Variables Python has no command for declaring a variable. 파이썬은 변수를 선언하는 특별한 명령이 없다. A variable is created the moment you first assign a value to it. 변수를 처음 할당할 때 선언이 된다. Variables do not need to be declared with any particular type, and can even change type after they have been set. 변수는 어떤 타입으로 선언될 필요가 없고, 심지어 변수를 선언한 이후에도 타입을 변경할 수 있다. (특정 타입으로 선언하지 않았기 때문) x = 111 #int정수 타입이 되었겠지만 x =..

python/w3schools 2021.05.20

[w3schools] Python Syntax

if 5>2 : print("it works") //정상적으로 들여쓰기 한 경우 파이썬에서는 들여쓰기가 중요하다. 해당 코드는 실행이 정상적으로 되지만 print 앞에 들여쓰기를 하지 않았을 경우는 if 5>2 : print("it works") //실행이 되지 않는다. 실행이 되지 않고 오류가 발생한다. 두 줄을 출력할 때는 그 들여쓰기 정도가 똑같아야 한다. //정상적으로 실행되는 경우 if 5 > 2: print("Five is greater than two!") print("Five is greater than two!") //에러1 if 5 > 2: print("Five is greater than two!") print("Five is greater than two!") //에러2 if 5 >..

python/w3schools 2021.05.20
반응형