مشروع لعبة المكرباص
print("Welcome to the microbus. You will get money and it's up to you and your luck. If you have the money to pay for the ride, you can ride. If you don't, you will lose and you won't be able to go home.")
import random
import time
Random_money = random.randint(1,10)
time.sleep(1)
print('Are you afraid or what?')
time.sleep(1.3)
ride = input(f'You have {Random_money} a pound, Do you ride or not? ').lower()
if ride == 'ride':
if Random_money < 5:
print("No, you can't ride if you don't have money, Unfortunately, you are shouting in the street")
else:
print('You can ride normally')
friand = []
ride_friand = input("Do you like to ride with your friends?, yes or no")
if ride_friand == 'yes':
ride_name = input("Add the names of the people who will ride with you").split(' ')
friand.append(ride_name)
for x in friand:
print(f"People who rode with you\n {x}")
else:
print('Thank you for your ride')
else:
print('Unfortunately, you are shouting in the street')