yukiyuki
yukiyuki @Db5hLx ·
Python学習 Day5 問題 3つの数の最大値(maxなし) 処理 ①A,B,C入力 ②Aが最大か判定 ③違えばBを判定 ④それ以外はC Python A, B, C = map(int, input().split()) if A >= B and A >= C: print(A) elif B >= A and B >= C: print(B) else: print(C) #Python #AtCoder #100DaysOfCod
2
Mayank Kontey
Mayank Kontey @MAYANKKONTEY ·
As a coder, the hardest bug isn’t in the code. It’s distraction. New frameworks. New AI tools New tutorials. You start everything and finish nothing. Now I focus on one thing: write code daily and ship small That’s how real builders grow #buildinpublic #coding #100DaysOfCod
26
Orbit 2x
Orbit 2x @orbit_2x ·
The 3 things every developer hates dealing with: Cron Schedules ("Does * * * * * run every minute or hour?") Regex (Write-only language) Timezones (UTC vs Local pain) I built tools to solve all three instantly. 👉 orbit2x.com #Coding #Productivity #100DaysOfCodn
1
20
ABDUL HAQEEM ADEGOKE
ABDUL HAQEEM ADEGOKE @AdegokeHaqeem ·
Day 53! 🐍 Big shift today: moved into Asynchronous Programming and the core pillars of OOP (Classes, Inheritance, and Polymorphism). I'm learning how to make my code reusable, flexible, and efficient. No more messy scripts it’s time for proper software design. 🏗️🚀 #100DaysOfCodjPD
35
Acee/\
Acee/\ @jayyprinzz ·
Day 26 — Thinking differently List comprehension changed how I approach problems today. The NATO Alphabet project made the lesson stick. Clean logic feels good. #PythonJourney #100DaysOfCod
7