과제 중 encoding_sentence(english_sentence) 함수만 계속 fail 이 떠서... (작동은 매우 깔끔하게 잘 됩니다) 혹시 어느부분이 문제가 있는지 봐주실수 있는지요? def encoding_sentence(english_sentence): clear_sentence = get_cleaned_english_sentence(english_sentence) clear_sentence_up = clear_sentence.upper() inner_morse = [] for i in range(len(clear_sentence_up)): if clear_sentence[i] == " ": inner_morse.append("") else: inner_morse.append(encoding_character(clear_sentence_up[i])) result = " ".join(inner_morse).strip() return result
안녕하세요 교수님 갑자기 제출이 잘 되다가 안됩니다..ㅠ 아래와 같이 backendAPIError 가 뜨는데....무엇이... 문제일까요?ㅠㅠ ∙ Session token prefix: d11622a875 ∙ In the legacy mode, all cases will run serially! ✘ BackendAPIError: 500 Internal Server Error Internal server error.
안녕하세요 파이썬 공부를 시작한 직장인입니다. 앞으로 잘부탁드립니다. 2가지 질문이 있습니다. 1. Waring 관련 cmd 창에서 python 이라고 입력하면 Warning: This Python interpreter is in a conda environment, but the environment has not been activated. Libraries may fail to load. To activate this environment please see https://conda.io/activation Type "help", "copyright", "credits" or "license" for more information. 이러한 Waring이 뜨고 진행이 되더라구요 구글링을 해보니까 conda activate base python 이렇게 키인을 하면 된다해서 그렇게 하니 해결은 되던데... 혹시 제 PC에서 어떤 설정을 변경해야 하는지 아시나요? 2. cmd 창에서 매번 경로를 치려니 빡시던데 강의를 보니 교수님께서는 무언가 폴더 내 파일경롤 빨리 찾아오는 단축기 같은게 있어보여서요... 혹시 무엇인지 그 꿀팁을 알려 주실수 있을까요? 감사합니다.