여러가지 형식으로 된 파일을 일괄 처리하는 방법 있을까요?
예를 들어 컴퓨터 교육 시간표 형식이 아래한글, 엑셀, png 파일 등...
여러가지 형식으로 된 파일을 일괄 처리하는 방법 있을까요?
예를 들어 컴퓨터 교육 시간표 형식이 아래한글, 엑셀, png 파일 등...
구글지도 우클릭 이곳이 궁금한가요 클릭하면 위도 경도 나온다
고 설명이 많이 나오는데, 안 된다. 전에는 되었나보다.
대신, 주변검색 누르면 위도 경도 나온다. 그런데, 이걸 복사 붙이기 하는 방법은?
모르겠다.
#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;
}
파이썬 워드 클라우드 stopwords
#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()