************************************* 배경화면이 어두워서 스킨위저드에서 배경색상을 바꿨네요 코로나19(신종 코로나바이러스 감염증) 사태로 마스크 소비량이 급증하면서 버려지는 마스크도 그만큼 늘었다. 정부는 길가에 함부로 버려지는 마스크가 감염의 원인이 될 수 있다고 지적하며 올바른 폐기를 당부했다. 신종 코로나바이러스 감염증(코로나19) 전국 확산 상황과 관련해, 정부는 25일 “이번 주가 사회적 거리두기 3단계 격상 여부를 결정짓는 중대한 고비”라며 “사회적 거리두기 3단계가 시작되면 일상이 정지되고 일자리가 무너지는 어려움을 감내해야만 한다”고 경고했다. ///////////////// 우리는 예전에 경험해보지 못한 엄중한 사태(코로나)를 격고 있음에도 불구하고 이 일을 과소평가하고 있는 사람들이 세계도처에 있다 . 예로 , 미국의 젊은이들은 코로나19의 위험을 가볍게 여기고 코로나 파티를 열기도 한다고 한다 . 아직도 우리는 코로나19로 인한 고통과 그결과를 예측할 수가 없다고 한다 . 거기에 코로나를 가볍게 무시하거나 , 지나치게 두려워함은 우리에게는 별로 유익할 것이 없다 . 이제 우리에게 중요한 것은 왜 , 어떠케 이런 일이 일어난 것인지를 깊이 성찰을 하는 것입니다 . from lee , 2020-07-29 수요일 제6629호 www.seoulkcr.com을 보고 //////////////////////////////////////////////////////////////////////////// 오늘은 날씨도 복날만큼이나 무더운 날씨인데 ..... 아침에 길거리의 가판대에 교차로신문 내용을보고 몇자 적어봅니다 . ..... " 가뭄 끝은 있어도 홍수끝은 없다는 말 " 입니다 . 아픔과 혼란이 가득한 시간속에서도 눈길을 끄는 소식입니다 . ... 10여마리의 소떼가 암자로 대피했다는 소식입니다 .... 전날에 폭우로 인해 섬진강이 범람하고 축사에 물이 차오르자 소들이 축사를 나와 암자로 피했다는 내용입니다 . .... 사찰 경내에 소들이 모여있는 한장의 사진을 오래도록 바라보았읍니다 ...... 그리고 사진을 바라보다 그만 마음이 울컼하였읍니다 ....... 이 세상의 땅 곳곳에 자리 잡은 사찰이며 성당이며 교회가 이러해야 하지 않을까 싶었읍니다 .... 누구나 위험한 일을 만났을 때에 그 누구라도 (소들조차도!) 피할수가 있는 곳 , 위험과 두려움으로부터 벗어나 안전과 평안과 쉼을 얻을 수 있는 곳, 누구에게라도 문이 열려져 있는 피난처가 되어야 하지 않을까 싶었던 것입니다 .... 2020-08-13 복사함 ////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////// ************************************

'전체 글'에 해당되는 글 29건

  1. 2020.04.16 :: 파일다운 + 파이썬공부
  2. 2020.04.13 :: letter trom mail
  3. 2020.04.02 :: 코로나의 우리경제
카테고리 없음 2020. 4. 16. 11:14

직장티콘공모전_출품신청서,개인정보수집동의서 (1).doc


ms word 문서


https://nateonevent.nate.com/event/20200401_acticonContest/



오전 11:17 2020-04-16



//////////////////////////////////////////////////////////////////////////////


https://www.google.co.kr/search?client=opera&hs=DB&q=파이썬+터틀+예제&sa


https://dojang.io/mod/page/view.php?id=2275


https://opentutorials.org/module/2980/23832


https://opentutorials.org/module/2980/17298







https://m.blog.naver.com/PostView.nhn?





http://blog.naver.com/PostView.nhn - 거북이


https://www.google.co.kr/search?client=opera&q=파이썬+거북이+



///////////////////////////////////////////////////////////////////////////



파이썬 공부하기 - https://jinseok12.tistory.com/19



>>> import random

                   >>> random.sample(range(1,45),6)

           결과 - [22, 27, 40, 18, 16, 24]


>>> 

>>> 


>>> import random

                               >>> number=random.sample(range(1,45),6)

>>>print(number)

        결과 - [35, 44, 42, 31, 1, 38]


>>> 

>>> 


>>> import random

       >>> random.randint(1,45)

결과 - 2


>>> 

>>> 


로또복권 만들기 - 1


/////////////////////////////////////////////////////////////



>>> import random

>>> for i in range(6):

                     print(random.randint(1,45))


결과


12

3

36

15

35

13


>>> 


로또복권 만들기 - 2


/////////////////////////////////////////////////////////////////////////////




https://m.blog.naver.com/PostView.nhn?blogId=python_math&logNo=221214856867&proxyReferer=https:%2F%2Fwww.google.co.kr%2F


거북이 사이트


https://www.google.co.kr/search  --  https://repl.it/languages/python_turtle



/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


import turtle

t = turtle.Pen()   와 아래코드 비교 !



from turtle import *
t = Turtle()

for c in ['red', 'green', 'grey', 'blue']:

for x in range(3):
t.color(c)
t.forward(175)
t.left(90)
t.circle(10)




////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


행운번호 추첨기


https://repl.it/repls/KindlyUpbeatCookie


https://repl.it/repls/KindlyUpbeatCookie


위의 사이트에서 수정가능 합니다



//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////



import random
number=random.sample(range(1,45),6)
print(number)

print()
print()
print()
print()

import random
number=random.sample(range(1,45),6)
print(number)

※ 여기는 print() 사용 예 입니다 .

오전 10:29 2020-05-06

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


터틀 알고리즘에 대해서




import turtle

t = turtle.Turtle()

for c in range(6):
t.circle(25)
t.up()
t.forward(50)
t.down()


※ from turtle import *


//////////////////////////////////////////////////////////////////////////////////////////////


파이썬 - 도형그리기 연습


<iframe height="400px" width="100%" src="https://repl.it/repls/CulturedCompatibleOctagons?lite=true" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>



kkkkk





오전 11:06 2020-05-08  from lee



////////////////////////////////////////////////////////////////////////////////////////////////


- print 함수 사용법 -



print("안녕하세요" , end=" ")

print( )

print( )



/////////////////////////////////////////////////////////////////////////


- end 사용방법의 예 -


print( )

print('안녕하세요')
print('안녕하세요',end='')
print('end 사용방법 입니다')
print('좋은하루 되세요!')


//////////////////////////////////////////////



from turtle import *

for i in range(3):
for x in range(2):
circle(15)
up()
forward(20)
down()


※ 참고하기 - 반복되는 for문 사용하기


////////////////////////////////////////////////////////////


거북이 움직이기


from turtle import * import random speed(0) for x in range(1800): a=random.randint(1,360) setheading(a) forward(20)



////////////////////////////////////////////////////////////////

파이썬으로 이곳에서 연습하세요..!



마트에서 물건을 사고 거스름돈을 계산하기 ! pay=int( input('지불금액입력') ) price=int( input('물건값 입력') ) num=int( input('구매개수입력') )


change=pay-(price*num )
print() print('지불:%d ' % pay ) print('물건:%d' % price ) print('구매:%d ' % num ) print( '---------------' )
print('거스름돈은 %d 원이다 ' % change)
print()
print("여기에 날짜를 입력해야") print('test :' '2020-06-24')


/////////////////////////////////////////////////////////////

print('Hello World!')
print('')

dan=int(input('몇단을 출력해요!'))
for num in range(1, 10):
print(dan, '*', num, '=', dan*num)
print('')
print('goodbye!')

https://repl.it/repls/DecentUnitedAddons#main.py


//////////////////////////////////////////////////////////////////

인치를 센티미터로 변환하는 예제

from tkinter import*
window=Tk()
 
def process():
  result = float(e1.get()) * 2.54
  l4 = Label(window, text="%s 센티미터"%result)
  l4.grid(row=2, column=1)
 
l1 = Label(window, text="인치를 센티미터로 변환하는 프로그램:")
l1.grid(row=0, column=0, columnspan=2)
l2 = Label(window, text="인치를 입력하시오:")
l2.grid(row=1, column=0)
 
e1 = Entry(window)
e1.grid(row=1, column=1)
l3 = Label(window, text="변환결과:")
l4 = Label(window, text="")
l3.grid(row=2, column=0)
l4.grid(row=2, column=1)
 
b1 = Button(window, text="변환", command=process)
b1.grid(row=3, column=1)
 
window.mainloop()


출처: https://www.crocus.co.kr/1520?category=239994 [Crocus]

참고하기위해서 프로그램을 복사하였음

////////////////////////////////////////////////////////////////////////////////////////////










////////////////////////////////////////////////////////////////////////




#-*- coding:utf-8 -*-


# 파이썬 GUI용 툴킷 Tkinter를 import

from Tkinter import *


# Tkinter 윈도우 객체 생성

root = Tk()


# (가로 x 세로 + x위치좌표 + y위치좌표)

root.geometry("500x300+300+200")


def callback(number):

    print "Button-", number


print 'b1'

# btn1 버튼 클릭시 실행할 메소드는 callback()이고

# 이 메소드로 넘길 paramter 값은 111이다.

# 따라서 btn1 버튼 클릭시 아래 내용 출력된다.

# Button- 111

btn1 = Button(text="One", command=lambda: callback(111))

btn1.configure(font=("Consolas", 15), width=20)

btn1.pack(pady=7)


print 'b2'

btn2 = Button(text="Two", command=lambda: callback(222))

btn2.configure(font=("Consolas", 15), width=20)

btn2.pack(pady=7)


print 'b3'

btn3 = Button(text="Three", command=lambda: callback(333))

btn3.configure(font=("Consolas", 15), width=20)

btn3.pack(pady=7)


# Tkinter 윈도우 화면에 표시

root.mainloop()






출처: https://developer-joe.tistory.com/149 

[코드 조각-Android, Java, Spring, JavaScript, C#, C, C++, PHP, HTML, CSS, Delphi]

참고로 원문을 복사하였읍니다




///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////











posted by baboo
:
카테고리 없음 2020. 4. 13. 11:30
Thanks again for subscribing to Informed American Today.

Sincerely,

Evan Roberts,
Editor's Signature

Editor-In-Chief
Informed American Today

PS - We love hearing your comments and suggestions. You can reach me personally at newsletter@informedamericantoday.com

PPS - Thank you for spreading the word about your new favorite news site with family and social media friends!


원 당췌 무슨 말인지 하나도 모르네   !

문장을 번역해 보시지요 !


오전 11:29 2020-04-13



//////////////////////////////////////////////////////////////////////////////////////////////////////////


posted by baboo
:
카테고리 없음 2020. 4. 2. 15:48

have a beautiful day !



금융권 상반기 취업문 닫혔다…공채 줄줄이 하반기로


금융권 상반기 취업문 닫혔다…공채 줄줄이 하반기로


금융권 상반기 취업문 닫혔다…공채 줄줄이 하반기로



오후 3:48 2020-04-02






                                                    서울시 재난 긴급생활비 지원 신청 안내


https://wis.seoul.go.kr - https://univ.jinhakapply.com/univ924401.aspx


오후 12:59 2020-04-07




/////////////////////////////////////////////////////////////////////////////////////////////////




http://ny.koreaportal.com/yp/21858-New-York-%EC%94%A8%ED%8B%B0%ED%94%BC%EC%8A%A4-%ED%81%B4%EB%A6%AC%EB%8B%89-%EB%89%B4%EC%9A%95-%EB%82%B4%EA%B3%BC-%EB%A7%A8%ED%95%98%ED%83%84-%EB%82%B4%EA%B3%BC-%EB%A7%A8%ED%95%98%ED%83%84-%EB%B3%91%EC%9B%90-%EB%A7%A8%ED%95%98%ED%83%84-%ED%95%9C%EC%9D%B8%EB%B3%91%EC%9B%90



http://ny.koreaportal.com/




/////////////////////////////////////////////////////////////////////////////////////////////////////



에니헤슬렘 - stilllife - https://www.youtube.com/watch?v=OPTAbdvrurk





http://cafe.daum.net/dspark5516/m5py/236?q=아름다운팝송&re=1



<embed width="250" height="45" src="https://t1.daumcdn.net/cfile/blog/19080D154B72568853" type="audio/x-ms-wma" style="left: 1px; top: 0px; width: 250px; height: 45px;" autostart="true" volume="0" loop="-1" wmode="transparent" x-allowscriptaccess="never" allownetworking="internal" allowscriptaccess="sameDomain">



오전 11:44 2020-04-16



//////////////////////////////////////////////////////////////////////////////////////////////////



posted by baboo
: