Skip to content

Instantly share code, notes, and snippets.

# Inspired from https://twitter.com/YTolun/status/1405056460648759299
last_day_index = int(input("Kaç günlük twit oluşturmak istersiniz? ")) + 1
day_index = 1
message_content = "Aşıyla ilgili şaka yapmak"
day_name= "Bugün"
while day_index < last_day_index:
Card(
margin: EdgeInsets.all(8),
shape: _border,
clipBehavior: Clip.antiAliasWithSaveLayer,
child: Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [color[100], color[300]]),
#KeroKOD Python Projeleri Part: 4 / www.kerokod.com
def kucukHarf(sifre):
kucukListe = ['a', 'b', 'c', 'ç', 'd', 'e', 'f', 'g', 'ğ', 'h', 'i', 'ı', 'j',
'k', 'l', 'm', 'n', 'o', 'ö', 'p', 'r', 's', 'ş', 't', 'u', 'ü', 'v', 'y', 'z']
for harf in sifre:
for kontrolHarf in kucukListe:
if harf == kontrolHarf:
return True
return False