import random
import time
#вопроси
condition = True
while condition:
random = ( random.randint(1, 2) )
number = float( input( 'Введите число 1 либо 2. Если угадаете получите приз!' ))
#угадал
if random == number:
a = str( input( 'Вы угадали!! Дайте номер своего елект кошелька и ми начислим деньги. :' ))
print( 'Отлично!! Деньги прийдут через 5 минут.' )
exit = input( 'Програма завершена! Троян закроется через 15 секунд.\n Чтобы закрыть програму press f\n Спасибо что посмотрел до конца))) ' )
time.sleep(15)
#не угадал
elif random != number:
b = input( 'Вы не угадали(( Может попробуем снова ? (да, нет) :' )
if exit == 'f':
condition = False
if b == 'нет':
condition = False
elif b == 'Да' or b == 'да':
print( 'd' )
SystemExit(1)
class MoneyBox:
def __init__(self, capacity: int):
self.capacity = capacity
self.balance = 0
def can_add(self, amount: int):
return self.capacity - self.balance >= amount
def deposit(self, cash: int):
if cash < 0:
print("error: invalid operation")
else:
self.balance += cash
if __name__ == "__main__":
capital = MoneyBox(50)
condition = 1
while condition == 1:
amount = int(input("Enter a amount: "))
if capital.can_add(amount):
capital.deposit(amount)
print("Current balance in a capital: {}".format(capital.balance))
condition = int(input("Enter 1 to continue, 0 to abort: "))
else:
print("Too large amount")
break
from kivy.app import App
from kivy.lang import Builder
from kivy.uix.layout import Layout
kv = '''
<Foo>:
on_touch_down: print(self.size)
'''
Builder.load_string(kv)
class Foo(Layout):
def __init__(self, **kwargs):
super().__init__(**kwargs)
print (self.size)
class MyApp(App):
def build(self):
return Foo()
MyApp().run()