0w0
[BASIC] 파이썬 random으로 일정 범위 날짜 정하기 본문
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
반응형
'Coding > Python' 카테고리의 다른 글
[BASIC] 파이썬 슬라이싱 (0) | 2020.11.17 |
---|---|
[BASIC] 파이썬 문자열 (0) | 2020.11.17 |
[BASIC] 파이썬 랜덤함수, from random import * (0) | 2020.11.16 |
[BASIC] 파이썬 기본 숫자 처리 함수, from math import * (0) | 2020.11.16 |
[BASIC] 파이썬 연산자 #num+=2 (0) | 2020.11.16 |
Comments