반응형

python 18

[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

[PYTHON] W3Schools로 파이썬 공부하기

자바만 공부하다가 Python을 한 번 튜토리얼만 맛보기를 해보려한다. Python Tutorial Python Tutorial Learning by Examples With our "Try it Yourself" editor, you can edit Python code and view the result. Click on the "Try it Yourself" button to see how it works. Python File Handling In our File Handling section you will learn how to open, r www.w3schools.com 오늘은 Variables 까지만! #타입을 지정하지 않아도 된다. x = 1 y = 'something' #해당 변수가 ..

python/w3schools 2021.03.27
반응형