I am reading to some piece of code written by some experienced programmer, and I do not understand some part of it. Unfortunately, I am new to Python programming.
This is the line of code which confuses me:
realworld = ConcreteRealWorldScheduler(RealWorldScenario(newscenario)).schedule()
To generalize I will rewrite it again
variable = OneConcreteClass(OneClass(anotherVariable)).method()
This part confuses me the most:
(RealWorldScenario(newscenario))
If someone could give me a thorough description it would be very helpful.
THanks