검색 결과: "#Pythonbeginner"

20 개 결과
Jamey LaMar
Jamey LaMar@_JLaMar·
Unlock Python's potential with PyCharm! Your smart coding companion. Daily Doc Tip: Use `#` for comments to explain *why* your code does something, not just *what*. Concept: Variables. Store data like `user_name = "Dev"`. PyCharm helps you track them easily. #PythonBeginner...
English
0
0
0
11
Jamey LaMar
Jamey LaMar@_JLaMar·
New to PyCharm? Level up your Python journey. Daily Doc Tip: Hover over any code element for instant quick docs. Concept: Smart Code Completion. Type `str.` and PyCharm suggests methods. It's your intelligent assistant, making coding faster & cleaner. #PyCharm #PythonBeginner
English
0
0
0
16
IrisTech
IrisTech@IrisTechss·
Git milestone: Created PR from feature branch, requested review (solo), merged after fixing small conflict. Practicing full Git flow – next up: collaborating with someone! #GitHub #PythonBeginner #CodingJourney
English
0
0
0
42
IrisTech
IrisTech@IrisTechss·
Git practice: Used git branch -d feature/old-branch after merging, then git push origin --delete feature/old-branch to clean remote. Keeping branches tidy = good housekeeping. #GitHub #PythonBeginner #CodingJourney
English
0
0
0
13
IrisTech
IrisTech@IrisTechss·
Funny bug: Infinite while loop – forgot increment counter. Added it and felt like a detective solving the case. These moments never stop being funny. What loop error still makes you cringe? #CodingJourney #PythonBeginner #CodeStruggles
English
0
0
0
5
IrisTech
IrisTech@IrisTechss·
Today's highlight: def recommend_top_hotels(hotels, limit=3): sorted_hotels = sorted(hotels, key=lambda x: x['rating'], reverse=True) return sorted_hotels[:limit] Used for loop display. Sorting by rating feels powerful! #PythonBeginner #PythonTips #CodingJourney
English
0
0
0
4
IrisTech
IrisTech@IrisTechss·
Learning moment: List comprehension inside function – forgot it returns list, tried treating as single value. Added [0] or loop. List comps are powerful but sneaky. What Python feature still surprises you? #CodingJourney #PythonBeginner #CodeStruggles
English
0
0
0
20
IrisTech
IrisTech@IrisTechss·
Facepalm: Defined global variable inside function without global keyword – UnboundLocalError. Added global and fixed. Scope lessons never stop. What scope bug still trips you? #CodingJourney #PythonBeginner #CodeStruggles
English
0
0
1
7
IrisTech
IrisTech@IrisTechss·
Proud of this: def calculate_total_cost(base_price, nights, tax_rate=0.075): subtotal = base_price * nights if nights >= 5: subtotal *= 0.9 tax = subtotal * tax_rate return subtotal + tax Pricing logic coming together. #PythonBeginner #PythonTips #CodingJourney
English
0
0
1
6
IrisTech
IrisTech@IrisTechss·
Post-video poll – after seeing the 2026 data, where do you stand? A) All-in forever B) Love it, but eyeing Rust/Mojo C) Switching soon – performance matters D) Still confused Vote + explain why – replying to everyone today! #Python #PythonBeginner #LearnPython
English
0
0
1
14
IrisTech
IrisTech@IrisTechss·
Honest moment: Spent 15 mins wondering why date function failed – passing strings instead of datetime objects. Added isinstance() check. Type mismatches still get me, but catching faster. Your haunting type error? #CodingJourney #PythonBeginner #CodeStruggles
English
0
0
0
7
IrisTech
IrisTech@IrisTechss·
Bug story: Defined a function inside another – scope error city. Moved it out and everything worked. These moments level us up. What bug made you feel dumb but smarter after? #CodingJourney #PythonBeginner #CodeStruggles
English
0
0
0
11
IrisTech
IrisTech@IrisTechss·
Quick share: def get_star_display(rating): if rating >= 4.5: return "★★★★★" elif rating >= 3.5: return "★★★★☆" elif rating >= 2.5: return "★★★☆☆" else: return "★★☆☆☆" Called after average calc. Visual feedback feels pro! #PythonBeginner #PythonTips
English
0
0
0
9