언어별 자주 사용하는 단어의 리스트 (윅셔너리) https://en.wiktionary.org/wiki/Wiktionary:Frequency_lists Wiktionary:Frequency lists - Wiktionary Counting words and lemmas: The following frequency lists count distinct orthographic words, including inflected and some capitalised forms. For example, the verb "to be" is represented by "is", "are", "were", and so on. TV and movie scripts[edit] Most comm en.wiktionary.or..
jsonDecodeError가 발생하고 있음... from tkinter import * from tkinter import messagebox from random import choice, randint, shuffle import pyperclip import json # -----------------gen password----------------------# def gen(): password_entry.delete(0, 20) # 생성 전에 화면의 패스워드 엔트리엣 삭제 letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w'..
Days29에서 생성한 웹싸이트 패스워드 관리 프로그램의 저장파일을 JSON 형식으로 수정하고, 최초 파일이 없을 경우 등 에러에 대한 예외처리를 적용한 업그레이드 버전을 작성함. 이는 Search 기능을 포함한 최종버전의 -1 버전임. from tkinter import * from tkinter import messagebox from random import choice, randint, shuffle import pyperclip import json # json확장자 파일을 wirte(dump)하고, read(load)하고, update(update)하기 위한 모듈 import # -----------------gen password----------------------# def gen(): ..
import pandas #TODO 1. using csv file, Create a dictionary in this format like: #{"A": "Alfa", "B": "Bravo"} data = pandas.read_csv("./nato_phonetic_alphabet.csv") data_dict_comprehension = { row.letter:row.code for (index,row) in data.iterrows() } #TODO 2. Create a list of the phonetic code words from a word that the user inputs. def phonetic(): word = input("Enter a word: ").upper() try: phone..
[IndexError] fruits 리스트 내의 범위를 벗어나는 인덱스 에러가 발생하면, 인덱스 에러 대신에 디폴트 값인 'Fruit pie' 를 출력할 수 있도록 코딩. fruits = ["Apple", "Pear", "Orange"] #TODO: Catch the exception and make sure the code runs without crashing. def make_pie(index): try: fruit = fruits[index] except IndexError: print("Fruit pie") else: print(fruit + " pie") make_pie(int(input("Number(0-2): "))) [KeyError] 딕셔너리에서 Likes 키가 없는 리스트가 있기 때문..
#BMI Example height = float(input("Height: ")) weight = int(input("Weight: ")) if height > 3: raise ValueError("Human Height should not be over 3 meters.") bmi = weight / height ** 2 print(bmi) ---------------------------------------- Height: 43 Weight: 65 Traceback (most recent call last): File "C:\Users\kiost\PycharmProjects\pythonProject\Days30_HandlingErrorsandExceptions\main.py", line 55, i..
- Total
- Today
- Yesterday
- set()
- vmware
- virt-sysprep
- 변수화
- 차집합
- insert
- exadata
- 배열
- sysprep
- 스토리지
- vmware.powercli
- 정렬
- dp-2
- cloud-init
- Join
- 중복제거
- dp-1
- fromkeys
- powershell
- LIST
- 3par
- 읽어오기
- 대소문자
- EXA
- 부동없이
- storage
- artandculture
- dezoomify
- powercli
- oracle
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |