Anaserose

204 posts

Anaserose banner
Anaserose

Anaserose

@Anaserose

Backend development in progress 👩‍💻 | Building in public 🛠️ | Documenting the work and lessons

Se unió Mayıs 2019
10 Siguiendo31 Seguidores
Anaserose
Anaserose@Anaserose·
Day 53 of learning #backend with #Python 🐍🎯 Today I built a Number Guessing Game! ✅ Imported random module with an alias ✅ Used randint() to generate the secret num ✅ Stored difficulty levels as dictionary key-value pairs ✅ Used a boolean flag to terminate the while loop
Anaserose tweet media
English
0
0
1
12
Anaserose
Anaserose@Anaserose·
Just finished my most challenging build yet 🐍🃏 I researched the rules before even starting. The logic? Figured it out a little … But when it came commenting my code? I froze 😅 Turns out writing code & writing ABOUT code are two different skills Still learning both 💪
English
0
0
2
9
Anaserose
Anaserose@Anaserose·
Day 52 of learning #backend with #Python 🐍🃏 Blackjack Part 4 dealer logic & winner determination! ✅ While loop makes dealer hit until 17+ ✅ Used .append() to deal cards ✅ Called hand_total() to compare ✅ if/elif/else handles 4 outcomes Finally Blackjack game is DONE 🙌
Anaserose tweet media
English
0
0
3
25
Anaserose
Anaserose@Anaserose·
Day 51 of learning #backend with #Python 🐍🃏 Blackjack Part 3 :the player's turn logic! ✅ Checked for immediate Blackjack ✅ Calculate winning ✅ Used while True & if/elif/else for 3 player actions ✅ Used .append() to add cards dynamically on Hit ✅ Called hand_total()
Anaserose tweet media
English
0
0
3
24
Anaserose
Anaserose@Anaserose·
It seems this is turning into a series Day 50 of learning #backend with #Python 🐍🃏 Blackjack Part 2 : the betting system! ✅ Used while True with break & continue to control flow ✅ Used try/except to catch ValueError on invalid bets ✅ Validated bet range with if statement
Anaserose tweet media
English
0
0
2
21
Anaserose
Anaserose@Anaserose·
Day 49 of learning #backend with #Python 🐍🃏 Today I built a Blackjack game ✅ Used a dict & list ✅ Built ASCII art cards as lists of strings using & created card using ASCII ✅Practiced add commentary to functions ✅ Practiced the while loop still learning it 😅
Anaserose tweet media
English
0
0
3
20
Anaserose
Anaserose@Anaserose·
Day 48 of learning #backend with #Python 🐍🧠 Today I built a Calculator using Functions! ✅ Stored functions & called them dynamically ✅ Built a game logic ✅ Handled 3 game states ✅Performed chained calculations The while loop was the hardest part need more practice 😅
Anaserose tweet media
English
0
0
3
25
Anaserose
Anaserose@Anaserose·
Day 47 of learning #backend with #Python 🐍📅 Today I built a Leap Year checker using Functions! I started with 3 separate variables: (See photo) Then challenged myself to condense it into one line: (See photo) Proud of that refactor 💪
Anaserose tweet media
English
2
0
2
35
Anaserose
Anaserose@Anaserose·
Day 46 of learning #backend with #Python 🐍⚙️ Went deeper into Functions & string formatting! Tried 3 ways to capitalize a name: 🔹 String slicing [0].upper() + [1::].lower() 🔹 .title() 🔹 .capitalize() went with this, just #BuildInPublic #LearningToCode #CodeNewbie
Anaserose tweet media
English
0
0
2
28
Anaserose
Anaserose@Anaserose·
Day 45 of learning #backend with #Python 🐍🔨 Today I built a Silent Auction using Dictionaries!
 ✅ Stored bids as key-value pairs ✅ Used a while loop & break to control flow ✅ Iterated with .items() to unpack key-value pairs ✅ Tracked the winner # see code comments for more
Anaserose tweet media
English
0
0
2
45
Anaserose
Anaserose@Anaserose·
Day 44 of learning #backend with #Python 🐍📖 Today I explored Dictionaries! ✅ Declared key-value pairs ✅ Iterated over a dictionary ✅ Cast values to int() for conditional comparisons ✅ Used if/elif/else to evaluate grade ranges ✅ Accessed nested data using chained indexing
Anaserose tweet media
English
0
0
3
43
Anaserose
Anaserose@Anaserose·
Day 43 of learning #backend with #Python 🐍❤️ Today I built a Love Score Calculator! While building: ✅ Used list comprehension just learned it & applied it immediately ✅ Called .upper() to avoid case sensitivity issues ✅ Wrapped in sum() to total letter counts in one line
Anaserose tweet media
English
0
0
2
22
Anaserose
Anaserose@Anaserose·
Day 42 of learning #backend with #Python 🐍⏳ Today I built a Life in Weeks calculator! ✅ Takes & casts user input to integer ✅ Functions to handle the logic ✅ Uses if statements & while loops ✅ Uses f-strings for dynamic output ✅ Calculates weeks left to age 90
Anaserose tweet media
English
0
0
2
37
Anaserose
Anaserose@Anaserose·
Day 41 of learning #backend with #Python 🐍🔐 Today I built a Caesar Cipher ✅ Stores alphabet as a reference string ✅ Takes user input for encode/decode & shift value ✅ Loops through each character ✅ Maps letters to index positions ✅ Shifts index to encrypt or decrypt
Anaserose tweet media
English
0
0
3
31
Anaserose
Anaserose@Anaserose·
Day 40 of learning backend with Python 🐍🧠 Today I turned my word guessing game into a Hangman game 🎯 ✅ Uses the same guessing logic (I built on existing code from day 39 ) ✅ Moved ASCII art into a separate file & imported it ✅ Displays hangman stages as lives decrease
Anaserose tweet mediaAnaserose tweet media
English
0
0
2
25
Wallflower 🌼
Wallflower 🌼@Wallflower1x0·
@Anaserose Welcome back, Let’s goooooooooooo 👏👏👏👏👏👏👏🔥🔥🔥🔥🔥🔥🔥
English
1
0
1
25
Anaserose
Anaserose@Anaserose·
I have missed posting here, I had some issues with account but I am back now 😃. So off to day 40 ✌️ I can’t wait to share my progress so far with you all . #buildinpublic #backend #python
English
1
0
2
38
Anaserose
Anaserose@Anaserose·
Day 39 of learning #backend with #Python 🐍🧠 Today I built a word guessing game 🎯 The program: ✅ Randomly selects a hidden word ✅ Shows blanks based on word length ✅ Accepts letter guesses from the user ✅ Fills in correct guesses and tracks attempts #BuildInPublic
Anaserose tweet media
English
1
0
2
55
Anaserose
Anaserose@Anaserose·
Day 37 of learning #backend with #Python 🐍🧠 Today I built a month dictionary 📅 ✅ The program allows users to enter a month abbreviation. ✅ A dictionary is used to map abbreviations to full month names ✅ Correct input returns the full month name instantly #BuildInPublic
Anaserose tweet media
English
3
0
6
58