본문 바로가기
728x90

분류 전체보기347

[유학] 시카고 총영사관에서 여권 재발급 1. 시카고 총영사관1) 위치: NBC Tower, 455 N Cityfront Plaza Dr #2700, Chicago, IL 60611  - 구글 지도: https://maps.app.goo.gl/YhQAPn661G2Pk9D6A    - NBC 타워 27층에 위치   - NBC 방문 시, 프론트 데스크에 시카고 총영사관에 왔다고 이야기 할 것 2. 여권 재발급 절차 [1]1) 신청방법: 방문신청 또는 온라인 신청   (1) 방문신청: 영사민원24를 통한 영사관 방문 예약 필수     ▪ 이때, 영사민원 24를 통해서 여권 재발급을 방문 신청하는 경우, 신청 후, 여권이 나오면 여권을 영사관에 재방문하여 수령하거나 우편을 통해서 보낼 수 있다.    (2) 온라인 신청: 영사민원 24 웹사이트    .. 2024. 7. 12.
[기타] 유용한 앱들 정리 Update - 2024/07/12: 아직 공사 중...   앱설명복지로대한민국에서 받을 수 있는80 종 이상의 복지 서비스를 자동으로 알려준다. 2024. 7. 12.
[CheckIO/Electronic Station] Acceptable Password V 1. Problem: https://py.checkio.org/en/mission/acceptable-password-v/ 2. My solution def is_acceptable_password(password: str) -> bool: # your code here if len(password) 9: return True else: list_boolen = [ x.isnumeric() for x in list(password)] if True in list_boolen : if False in list_boolen: return True re.. 2024. 4. 7.
[CheckIO/Electronic Station] Acceptable Password IV 1. Problem: https://py.checkio.org/en/mission/acceptable-password-iv/ 2. My solution def is_acceptable_password(password: str) -> bool: # your code here if len(password) 9: return True else: list_boolen = [ x.isnumeric() for x in list(password)] if True in list_boolen : if False in list_boolen: return True return False 2024. 4. 7.
[CheckIO/Electronic Station] acceptable-password-iii 1. Problem: https://py.checkio.org/en/mission/acceptable-password-iii/ 2. My solution def is_acceptable_password(password: str) -> bool: # your code here if len(password) < 6: return False else: list_boolen = [ x.isnumeric() for x in list(password)] if True in list_boolen : if False in list_boolen: return True return False 2024. 4. 7.
[CheckIO/Electronic Station] acceptable-password-ii 1. Problem: https://py.checkio.org/en/mission/acceptable-password-ii/ 2. My solution def is_acceptable_password(password: str) -> bool: # your code here if len(password) < 6: return False else: if True in [ x.isnumeric() for x in list(password)]: return True else: return False 2024. 4. 7.
[CheckIO/Electronic Station] digits-multiplication 1. Problem: https://py.checkio.org/en/mission/digits-multiplication/ 2. My solution: def checkio(number: int) -> int: # your code here dummy = 1; for number in list(str(number)): if int(number) != 0: dummy *=int(number) return dummy 2024. 4. 7.
[CheckIO/Scientific-Expedition] Secret Message 1. Problem: https://py.checkio.org/en/mission/secret-message/ 2. My solution def find_message(message: str) -> str: # your code here dummy = ''; for char in list(message): if char.isupper(): dummy+=char return dummy 2024. 4. 7.
[컴퓨터] 컴퓨터 관리 Summary 1. 컴퓨터가 실행할 때, 자동으로 켜지는 것들을 지워야 한다. 2. 전원 관리  1. 컴퓨터 실행 시, 자동으로 켜지는 것들 삭제 1) 윈도우의 검색 창에 시작 앱을 입력 2) 쓰지 않는 것들이나 높은 영향이라고 체크되어있는 것들을 꺼준다. 3)    [1] https://www.youtube.com/watch?v=VYSREhD5U4M    2. 바탕화면 광고 팝업 삭제 • URL: https://www.youtube.com/watch?v=R_sERmKjGS8   • 방법 1: 검색창에 "시작 앱" 검색 > "HncUpdateTray"를 끔 • 방법 2: 검색 창에 "개인 정보 설정" 검색 > 아래 4개의 항목들을 모두 끔 2024. 3. 24.
728x90