2022-10-28

How can batch various file type

여러가지 형식으로 된 파일을 일괄 처리하는 방법 있을까요?

예를 들어 컴퓨터 교육 시간표 형식이 아래한글, 엑셀, png 파일 등...

 


2022-10-11

Windows10 system locale

윈도10에서 한국어로 설정 안 되어 있으면 제대로 동작하지 않는 프로그램이 있다.
예를 들어 인터넷 뱅킹 공인인증서 등등.

윈도10 시스템 로캘 변경 방법
Window+R 단축기로 control 입력하여 제어판 실행
오른쪽 위 검색에 lang 입력하여 국가 또는 지역 클릭
관리자옵션 탭에서
시스템 로캘 변경(C)...
한국어(대한민국) 선택.
세계언어지원을 위해 UTF-8 사용에는 체크 안 함.
확인.

이렇게 하면 되긴 하는데 이 과정을 매크로 처럼 클릭 한 번 또는 명령 한번으로 할 수는 없을까???

2022-10-04

google map longitude latitude

구글지도 우클릭 이곳이 궁금한가요 클릭하면 위도 경도 나온다

고 설명이 많이 나오는데, 안 된다. 전에는 되었나보다.

대신, 주변검색 누르면 위도 경도 나온다. 그런데, 이걸 복사 붙이기 하는 방법은?

모르겠다.

C Add polynomials example

#include <stdio.h>
 
struct Polynomial {
  int coeff;
  int exp;
};
 
struct Polynomial first[15], second[15], result[15];
 
void display (struct Polynomial poly[], int terms)
{
  int i;
  printf ("\n");
  for (i = 0; i < terms - 1; i++) {
    printf ("%dX^%d+ ", poly[i].coeff, poly[i].exp);
  }
  printf ("%dX^%d ", poly[i].coeff, poly[i].exp);
}
 
int readExpression (struct Polynomial poly[])
{
  int terms, i;
  printf ("\nNumber of terms: ");
  scanf ("%d", &terms);
  printf ("\nEnter the coeffecients and exponents in DESCENDING order");
  for (i = 0; i < terms; i++) {
    printf ("\nCoeffecient :");
    scanf ("%d", &poly[i].coeff);
    printf ("Exponent :");
    scanf ("%d", &poly[i].exp);
  }
  return terms;
}
 
int addExpressions (int firstCount, int secondCount)
{
  int i, j, k;
  i = 0;
  j = 0;
  k = 0;
  while (i < firstCount && j < secondCount) {
    if (first[i].exp == second[j].exp) {
      result[k].coeff = first[i].coeff + second[j].coeff;
      result[k].exp = first[i].exp;
      i++;
      j++;
      k++;
    }
    else if (first[i].exp > second[j].exp) {
      result[k].coeff = first[i].coeff;
      result[k].exp = first[i].exp;
      i++;
      k++;
    }
    else {
      result[k].coeff = second[i].coeff;
      result[k].exp = second[j].exp;
      j++;
      k++;
    }
  }
 
  while (i < firstCount) {
    result[k].coeff = first[i].coeff;
    result[k].exp = first[i].exp;
    k++;
    i++;
  }
 
  while (j < secondCount) {
    result[k].coeff = second[j].coeff;
    result[k].exp = second[j].exp;
    k++;
    j++;
  }
  return k;
}
 
int main ()
{
  int firstCount, secondCount, resultCount;
  printf ("\nFirst Expression:\n");
  firstCount = readExpression (first);
  printf ("\nSecond Expression:\n");
  secondCount = readExpression (second);
  printf ("\nFirst Expression");
  display (first, firstCount);
  printf ("\nSecond Expression");
  display (second, secondCount);
  resultCount = addExpressions (firstCount, secondCount);
  printf ("\nResultant Expression:\n");
  display (result, resultCount);
  return 0;
}

2022-10-03

pytthon f-string

파이썬 f-string 예시. 3자리마다 쉼표 넣기
2의 n제곱을 세 자리마다 쉼표 넣어서 출력.

for i in range(100):
    print(f'{i} {2**i:,}')

2022-10-01

SolSarang

부천에 있는 맛집. 솔사랑

주소 : 경기 부천시 길주로560번길 52

python wordcloud stopwords

파이썬 워드 클라우드 stopwords

python wordcloud


#Python_(programming_language)

import wikipedia
import matplotlib.pyplot as plt

wiki=wikipedia.page('Python_(programming_language)')
text=wiki.content

from wordcloud import WordCloud, STOPWORDS
s_words=STOPWORDS.union({'used','use','many'})
wc=WordCloud(width=1000, height=700, stopwords=s_words).generate(text)

plt.figure(figsize=(40,40))
plt.imshow(wc)
plt.show()