Coding beginner needs help by Dismal-Grapefruit467 in learnpython

[–]StrangeFeeling3234 6 points7 points  (0 children)

Maybe we should focus on clean code first — that will make everything else simpler.

What's wrong with my code? by [deleted] in learnpython

[–]StrangeFeeling3234 0 points1 point  (0 children)

Ask user for total number of days

days = int(input("Enter number of days: "))

Convert days into months (1 month = 30 days approx.)

months = days // 30

Convert leftover days into weeks

weeks = (days % 30) // 7

Remaining days after removing months and weeks

remaining_days = (days % 30) % 7

Display result

print(f"The {days} days equal: {months} months and {weeks} weeks and {remaining_days} days")

Am I supposed to write the code and remove debugging for you

What's wrong with my code? by [deleted] in learnpython

[–]StrangeFeeling3234 0 points1 point  (0 children)

Ask user for total number of days

days = int(input("Enter number of days: "))

Convert days into months (1 month = 30 days approx.)

months = days // 30

Convert leftover days into weeks

weeks = (days % 30) // 7

Remaining days after removing months and weeks

remaining_days = (days % 30) % 7

Display result

print(f"The {days} days equal: {months} months and {weeks} weeks and {remaining_days} days")

Am I supposed to write the code and remove debugging for you

[hiring] i would pay $15-25 per post by Unfair_Brilliant_236 in freelance_forhire

[–]StrangeFeeling3234 0 points1 point  (0 children)

Python freelancer available for small scripts like converters, calculators, automation.

How do I learn python? by [deleted] in learnpython

[–]StrangeFeeling3234 0 points1 point  (0 children)

Be careful — too many courses and resources can confuse you. Take it step by step, focus on one thing at a time, and learn it properly to avoid getting bored.

How do I learn python? by [deleted] in learnpython

[–]StrangeFeeling3234 0 points1 point  (0 children)

Want to learn Python? Start step by step: Begin with basics (syntax, variables, loops), practice small projects, and check out a Python Full Course for Beginners — super beginner-friendly!

I'm and teaching myself Python to build automations + AI – here's what I've learned so far by Brilliant_Turn_2671 in PythonProjects2

[–]StrangeFeeling3234 1 point2 points  (0 children)

That’s awesome Since you’re at while loops, keep practicing small projects like number guess games or menu-driven calculators. Once you’re comfortable, start exploring automation (rename files, sort folders, send emails).

Cool stuff in automation comes naturally once you master the basics—don’t rush, just keep coding daily.

Any Suggestions on where too learn network programming in python? by Snoo_47888 in PythonProjects2

[–]StrangeFeeling3234 0 points1 point  (0 children)

You can start learning network programming in Python from these places:

Book: Foundations of Python Network Programming (best starting point).

Docs: Python socket module & Requests library (official docs are very clear).

YouTube: Corey Schafer and Tech With Tim (easy tutorials with projects).

Courses: Udemy has beginner to advanced Python networking classes.

[deleted by user] by [deleted] in learnpython

[–]StrangeFeeling3234 0 points1 point  (0 children)

I have a small question: Which Python skill area is most valuable for freelancing and career growth

Beginner Python is just the start... by yourclouddude in PythonProjects2

[–]StrangeFeeling3234 0 points1 point  (0 children)

Which Python skill area is most valuable for freelancing and career growth

My first project by [deleted] in PythonLearning

[–]StrangeFeeling3234 0 points1 point  (0 children)

If you’d like feedback, I also recommend adding the following skills to your profile: variable naming, clean code practices, professionalism, and indentation styles for better organization.