Anaserose

204 posts

Anaserose banner
Anaserose

Anaserose

@Anaserose

Backend development in progress ๐Ÿ‘ฉโ€๐Ÿ’ป | Building in public ๐Ÿ› ๏ธ | Documenting the work and lessons

Bergabung Mayฤฑs 2019
10 Mengikuti31 Pengikut
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