import json.
import time.
saat = time.strftime("%X")
print("Kayıt Olmak=1 -"" Giriş İçin=2")
Secim = int(input("Hangi İşlemi Yapıcaksınız: "))
if (Secim == 1):
print("Kayıt Sistemine Hoşgeldiniz Alttaki Bilgileri Doldurunuz")
KullaniciAdi = input("Kullanıcı Adını Giriniz: ")
Sifresi = input("Şifreizi Giriniz: ")
biglilier_dict = {
'isim': KullaniciAdi,
'şifre': Sifresi.
}
with open("bilgiler.json", "w") as f:
json.dump(biglilier_dict, f)
print("Başarı İle Kayıt Olundu. Kayıt Saati:",saat)