0w0

[BASIC] 파이썬 random으로 일정 범위 날짜 정하기 본문

Coding/Python

[BASIC] 파이썬 random으로 일정 범위 날짜 정하기

0w0 2020. 11. 16. 05:24
728x90
반응형
#월 4회 모임날짜 정하기
#매월1~3일은 제외
#온라인 3회
#오프라인 1회

from random import *
a=randint(4,28)
b=randint(4,28)
c=randint(4,28)
d=randint(4,28)

while a==b or a==c or a==d or b==c or b==d or c==d:
    a=randint(4,28)
    b=randint(4,28)
    c=randint(4,28)
    d=randint(4,28)

print(a, b, c, d)

print("매월 모임날짜 : "+str(a)+"일 "+str(b)+"일 "+str(c)+"일 "+str(d)+"일")


#출력형태
C:\Users\hotsk\Anaconda3\envs\Repeat\python.exe C:/Workspace/repeat/helloworld.py
9 15 4 18
매월 모임날짜 : 9일 15일 4일 18일

Process finished with exit code 0
728x90
반응형
Comments