Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Introducing Lists Using Lists Multidimensional Lists

Freelancing

How long will it take to start freelancing if I learn to code python daily for 5 hours. what is the average we get paid for beginner freelancer python.

First question, defends how quick you learn. Second question, depends where you live, and where you get hired. Google is an amazing ressource tho! :P

It depends on a number of factors but you can find out averages and ranges from a government website:

Bureau of Labor and Statistics

Wages by Occupation and Career Choice

https://www.bls.gov/bls/blswage.htm

2 Answers

Mikael D.D
PLUS
Mikael D.D
Courses Plus Student 2,080 Points

Devttata, Just a lil advice from student to student :)

I use to think like that too, but for me, it ended up having detrimental effects on my learning process until I switched to a long term approach. After all, Rome was'nt built in a day. Take your time, enjoy the journey and one day, both of us will become succesfull freelancers ;-)

import time

quote = " there is no elevator to success you have to take the stairs"
words = quote.title()
split = words.split()

for word in words:
    print(word)
    time.sleep(0.15)

print("              _____Don't Jump Any Steps, Go One At a time...")

steps = ["           __/","        __/","     __/","  __/","_/"]
for step in steps:
    print(step)
boi
boi
14,241 Points
import time

quote = " there is no elevator to success you have to take the stairs"
words = quote.title()
split = words.split()

for x in split:
  print(x)
  time.sleep(0.5)

print("              _____Don't Jump Any Steps, Go One At a time...")

steps = ["           __/","        __/","     __/","  __/","_/"]
for step in steps:
    print(step)
nikel Hayo
nikel Hayo
1,942 Points

maybe you can look over the freelance jobs at upwork. at current level, we are very much short of the technical capabilities to compete with the freelancers there. I only try to enjoy my journey. If I focus when it will end, I will feel that the journey will be much much longer .