When is Kevin Costner’s ‘Horizon: Chapter 2’ Coming Out? Here’s Why It Was Delayed


Horizon movie poster
New Line Cinema

Kevin Costner‘s epic movie Horizon: An American Saga – Chapter 1 is now streaming on Amazon’s Prime Video and it’s gaining a brand new audience, nearly two years after it under-performed in movie theaters.

The film franchise was originally set to be a four-movie series, with the first two movies being released within months of each other.

Chapter 1 was released in theaters on June 28, 2024 and Chapter 2 originally had a release date set for August 16, 2024.

After Chapter 1 only grossed $29 million in the United States and a total of $38 million worldwide, New Line Cinema made the decision to delay the release of Chapter 2. On July 10, 2024, New Line Cinema released a statement to announce the news.

“Territory Pictures and New Line Cinema have decided not to release Horizon: Chapter 2 on August 16 in order to give audiences a greater opportunity to discover the first installment of Horizon over the coming weeks, including on PVOD and Max. We thank our exhibition partners for their continued support as moviegoers across the U.S. discover the film in its theatrical run.”
-New Line Cinema

Territory Pictures also released a statement, explaining that they wanted more people to discover the first movie before the second one was released.

“The audience response to Horizon, and enthusiasm for seeing our story continue in Horizon 2, has been incredibly gratifying. Kevin made this film for people who love movies and who wanted to go on a journey. The support that we have received from film fans, and the theater owners, as they experience the first chapter of this saga only serves to reinforce our belief in them and the films that we have made, and we thank them for coming on board for the ride. We welcome the opportunity for that window to be expanded as we know it will only serve to enhance the experience of seeing Horizon 2.”
– Territory Pictures

Chapter 2 eventually had its world premiere at the Venice Film Festival on September 7, 2024 and was also screened at the Santa Barbara Film Festival on February 7, 2025.

While the movie still does not have a release date, Kevin has express his desire to continue the series. He told Deadline in November 2024, “I’m hoping, I’m dreaming, I’m meeting all the billionaires that we all hear about — they’re all hiding in the shadows.”

The post When is Kevin Costner’s ‘Horizon: Chapter 2’ Coming Out? Here’s Why It Was Delayed appeared first on Just Jared – Celebrity News and Gossip | Entertainment.



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