5 Exercises to Help You Build a Stronger Back


With a strong back, everyday tasks like lifting and carrying become much easier.Credit: Tatiana Maksimova / Getty Images
With a strong back, everyday tasks like lifting and carrying become much easier.
Credit: Tatiana Maksimova / Getty Images
  • A strong back supports better posture, reduces injury risk, and makes everyday movements easier.
  • Exercises that involve pulling and hinging movements can effectively target multiple back muscles.
  • Adding a mix of these movements to your routine can help build balanced back strength over time.

A strong back helps improve your posture, protect against spinal injuries, and make everyday lifting easier. If you're looking to strengthen your back muscles, try adding these five exercises to your strength-training routine.

1. Kettlebell Deadlifts

A staple posterior chain (backside of the body) exercise, deadlifts target your erectors, lats, rhomboids, and traps, as well as your glutes and hamstrings. While you can do them with a barbell, using a kettlebell is a bit more intuitive for getting the hinging pattern down. 

  • Stand with your feet hip-width apart, with the kettlebell between your feet.
  • Brace your core and bend at the hips and knees simultaneously to grab the kettlebell with both hands.
  • Keeping your core tight and back neutral, push through your midfoot as you lift the weight by extending your hips and knees.
  • Lock your hips out at the top without overextending and stand tall with your shoulders in line with your pelvis.
  • Slowly reverse the direction, completing subsequent reps. 

2. Lat Pull Down

The lat pulldown is a vertical pulling movement that develops the latissimus dorsi muscles, which are important for posture and shoulder stability. Well-developed lats help prevent rounded shoulders and injuries by supporting the humerus (upper arm bone) during movement. 

  • Sit at the lat pulldown cable machine and adjust the knee pad to secure your legs.
  • Now, grip the bar with your hands slightly wider than shoulder-width and pull your shoulders down, away from your ears.
  • Lean back slightly, point your collarbone up toward the ceiling, engage your core, and pull the bar down toward your chest, squeezing your shoulder blades together at the bottom.
  • Return the weight back to the top with control, feeling your lat muscles engage through the eccentric portion of the exercise.

3. Horizontal Cable Row

This horizontal pulling exercise effectively targets your mid-back, rhomboids, and traps, all of which contribute to improved posture and a balanced back. Make sure to avoid rounding your shoulders forward when you row to keep the tension on your back muscles.

  • Attach a handle to the rowing machine—any will do.
  • Grab the handle, keeping your arms extended and back straight.
  • Engage your core and pull the handles towards your torso, squeezing your shoulder blades together, then slowly return to the starting position with control.

4. Single Arm Dumbbell Row

Another horizontal pulling variation, the dumbbell row, challenges your single-arm strength and stability and helps correct any strength discrepancies between the two sides. By working each side individually, you can ensure you develop more balanced strength.

  • Grab a bench and place your left hand and your left knee on it in a one-sided tabletop position.
  • Now, move your right leg out to the side and hold a dumbbell with your right hand, letting it hang toward the floor.
  • Brace your core and pull the dumbbell towards your torso, making sure to keep your elbow close to your body.
  • Squeeze behind your shoulder blades at the top of the movement and lower the weight with control back to the starting position.
  • Switch to the other side between each set.

5. Pull-Ups

Though more advanced than other vertical pulling exercises, the pull-up is a staple exercise that targets your whole back. This movement can be particularly challenging to learn at first and requires quite a bit of upper-body strength, so you might want to add some assistance while you build strength to do a full pull-up.

You can use an assisted pull-up machine if you're at the gym, or hang a strong resistance band around the pull-up bar with your knees or feet through it, which acts as a ‘sling shot’ to help boost you while you pull yourself up. 

  • Grab the pull-up bar with your hands slightly wider than shoulder-width, palms facing away from you.
  • Hang from the bar with your arms fully extended and engage your core.
  • In one fluid motion, pull your chin over the bar by retracting your shoulder blades and using your arms while you point your collarbone toward the ceiling and look up slightly.
  • Slowly lower your body back down to the starting position with control and complete more reps until fatigue, but make sure your form stays consistent.



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


Python Partial Function – Table of Content

Python partial function

A partial function is one of the tools in the Functools module. ‘Functools’ is a module provided by python for higher-order functions, i.e., act on or return other functions. ‘Functools’ contains tools for functional-style programming. 

Partial functions help in calling another function with the positional arguments (args) and keyword arguments (keywords). We can fix some values in certain arguments.We can create new functions without having to replicate the body of the original function. 

  Become a python Certified professional  by learning this HKR Python Training !

Python Training Certification

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

Creating a partial function

Let us create a partial function that calculates the cube roots of the given numbers.

from functools import partial

#Create a function

def exponent(a,b):        

return a ** b

#Create a partial function that calculates cube roots

result = partial(exponent,3)

print(result(4))

The first function is for defining exponent arguments. The second function ‘result’ is created for fixing the value ‘3’ in the arguments to send to the main function – exponent. The output for the above program will be 81. If you want to generate square roots of given numbers, you can just replace the value ‘3’ with ‘2’ in the result partial function.


Here is one more program which performs multiplication of different numbers. 

from functools import partial

def expression(a,b,c,d):

return a*2 + b*3 + c*4 + d

result = partial(expression,5,6,7)

print(result(10))

The output for this program will be 66.

 

Big Data Analytics, python-partial-function-description-0, Big Data Analytics, python-partial-function-description-1

Subscribe to our YouTube channel to get new updates..!

Benefits of partial functions

Here are some benefits of using partial functions in your code.

  • We can construct variants of existing functions.
  • Partial functions are used to derive values from normal functions.
  • A partial function is similar to bind functionality in c++.
  • We can call the partial functions in multiple places of our code.It helps in code reusability.
  • Reduce the number of lines in your code.

   Top 50 frequently asked Python interview Question and answers !

Python Training Certification

Weekday / Weekend Batches

Conclusion

Partial functions help in removing redundancy.It also improves your coding capability.It is especially used in applying a range of different inputs to a single object (or) set somethings as constant in arguments of a function.So what are you waiting for? Try out creating different kinds of partial functions and have fun.Do check out our other python tutorials and blogs on python to increase your skill level.

Related Articles:

1. Python Operators

2. Python Split Method

3. Python Generators

4. Python List Length

5.Highest paying jobs in India



Source link