python/w3schools

[w3schools] Variable Names - Python Variables

유호야 2021. 5. 24. 21:13
반응형
  • 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 = "a"
var2 = "b"
var-2 = "c" // 에러
2var = "d"  // 에러
_var = "e"

 

Multi Words Variable Names

Variable names with more than one word can be difficult to read.
변수 이름이 한 단어보다 더 긴 경우에는 읽기 어려울 수 있다.

There are several techniques you can use to make them more readable:
여기 변수 이름을 쉽게 읽을 수 있게 하는 몇 가지의 테크닉이 있다.

Camel Case : 카멜 케이스

Each word, except the first, starts with a capital letter:
첫 번째 단어르 제외한 각 단어의 첫 철자를 대문자로 작성하기 

myVariableName = "John"

Pascal Case : 파스칼 케이스

Each word starts with a capital letter:
각 단어의 첫 자가 모두 대문자로 시작하기

MyVariableName = "John"

Snake Case : 스네이크 케이스

Each word is separated by an underscore character:
각 단어 사이마다 언더바로 구분한다.

my_variable_name = "John"
반응형