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 Python Basics (2015) Logic in Python Use input()

I finished 1 - Python for Beginners 2 - Python Data Types 3 - Logic in Python but i feel i forgot all

I have finished 1 - Python for Beginners 2 - Python Data Types 3 - Logic in Python but I feel I forgot all concepts Is that normal thing especially I am totally new to the world of code

2 Answers

Steven Parker
Steven Parker
230,274 Points

You are juggling several new things at once, programming concepts, language syntax, language keywords, etc. It might seem a bit much to retain. Some things that might help:

  1. Practice. Make little programs to put your new knowledge to use. Just some simple fun things.
  2. Review. Go back and re-watch the video on any topic area you need reinforcement on.
  3. Repeat. (Do 1 and 2 over again).
  4. Continue. Take the next-level course. It will cause you to recall what you know as you learn more.
Greg Kitchin
Greg Kitchin
31,522 Points

As Steven says, write your own programs. They don't have to be complicated (I wrote a program to calculate the sum of numbers between 1 and n for example (by using something called the Gauss formula, which is worth investigating), but writing your own code will help consolidate learning.

If you can, print out programs as well. Highlight bits and pieces of the code and you can see how things work.