전역변수(2)
-
Python 10 - 함수 활용 방법
# 함수 기본값 설정 def profile(name, age, main_lang): print("이름:{0}\t나이:{1}\t\t자주 사용 단어:{2}".format(name, age, main_lang)) profile("유재석", 51, "무야호") profile("김태호", 48, "오케이콜") ---------출력결과---------- 이름:유재석 나이:51 자주 사용 단어: 무야호 이름:김태호 나이: 48 자주 사용 단어:오케이콜 # 함수 기본값 설정 # 만약 태호와 재석이가 같은 나이에 같은 단어를 자주 사용한다면?? def profile(name, age=17, main_lang="무야호"): print("이름:{0}\t나이:{1}\t\t자주 사용 단어:{2}" .format(name, ag..
2021.05.02 -
Javascript 전역변수
아래 예시를 보면 쉽게 이해가 가능하다. 말 그대로 전 지역에서 접근할 수 있는 변수라 해서 전역변수이다. var Vscope = 'global'; function Fscope(){ document.write(Vscope); } function Fscope2(){ document.write(Vscope); } Fscope(); //global 출력 Fscope2(); //global 출력 //애플리케이션 전지역에서 접근할수 있는 변수라 해서 전역변수이다. //함수 안에다가 지정을 하게되면 함수 안에서만 접근이 가능하다. var vscope = 'global'; function fscope(){ var vscope = 'local'; var lv = 'local variables'; document.wri..
2021.04.20