HTML <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>page</title> <link rel="stylesheet" type="text/css" href="main.css"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> </head> <body> <div class="box"></div> <div class="text">Yurdugul</div> - </body> </html> CSS @import url('https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz'); .box{ position: absolute; background: #DA5437; width: 100px; height: 100px; } .text{ ...
from random import randint rand = randint ( 1 , 5 ) sayac = 0 while True : sayac += 1 sayi = int ( input ( "1 ile 5 arasında değer girin (0 Çıkış):" ) ) if ( sayi == 0 ) : print ( "Oyunu İptal Ettiniz" ) break elif sayi < rand : print ( "Daha Yüksek Bir Sayı Girin." ) continue elif sayi > rand : print ( "Daha Düşük Bir Sayı Girin." ) continue else : print ( "Rastele seçilen sayı {0}!" . format ( rand ) ) ...