태지쌤

로봇 & 코딩교육 No.1 크리에이터

파이썬/exercise

4-1. python random module, 동전 앞 뒤 무작위

태지쌤 2023. 1. 3. 11:59
반응형
import random

# 정수 난수 생성(이상, 이하)
integer = random.randint(0,3)
print(integer)

# 부동소수점 난수 생성(1 포함하지 않음) 0 - 1
float = random.random()
print(float)

# 0~5사이의 부동소수점 만들기 0 - 5
float2 = random.random() * 5
print(float2)

love_score = random.randint(1,100)
print(f"Your love score is {love_score}")
import random

coin = random.randint(0,1)

if coin == 1:
    print("heads")
else:
    print("tails")

음식값 누구 계산할까?

# Split string method
names_string = input("Give me everybody's names, separated by a comma. ")
names = names_string.split(", ")
# 🚨 Don't change the code above 👆

#Write your code below this line 👇
import random

random_number = random.randint(0, len(names) -1)
bill = names[random_number]

print(f"{bill} is going to buy the meal today!")
반응형

'파이썬 > exercise' 카테고리의 다른 글

4-3. python 가위바위보 게임  (0) 2023.01.04
4-2. python nested list 보물지도  (0) 2023.01.03
3-4 python treasure island  (0) 2022.12.27
3-3 python love calulator  (0) 2022.12.27
3-2 python Pizza calculator  (0) 2022.12.27