Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -185,6 +185,22 @@ tenses = {
|
|
| 185 |
("The team will have been operating under the new guidelines for two years by the time the review is conducted.", "Operating within guidelines until a review."),
|
| 186 |
]
|
| 187 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 188 |
}
|
| 189 |
|
| 190 |
tense_selected = None
|
|
|
|
| 185 |
("The team will have been operating under the new guidelines for two years by the time the review is conducted.", "Operating within guidelines until a review."),
|
| 186 |
]
|
| 187 |
},
|
| 188 |
+
'Future Continuous': {
|
| 189 |
+
'structure': 'Subject + will be + verb-ing',
|
| 190 |
+
'use': 'Used for actions that will be happening at a specific time in the future.',
|
| 191 |
+
'examples': [
|
| 192 |
+
("The scientist will be presenting her findings at the conference next week.", "Describing an action scheduled in the future."),
|
| 193 |
+
("At this time tomorrow, we will be analyzing the DNA samples.", "Specifying an ongoing future activity."),
|
| 194 |
+
("The students will be dissecting frogs in biology class tomorrow.", "Stating a planned future activity in an educational setting."),
|
| 195 |
+
("By 2050, researchers will be studying new methods of sustainable farming.", "Predicting future ongoing research activities."),
|
| 196 |
+
("Next month, the lab will be conducting extensive tests on the new vaccine.", "Outlining scheduled future actions in a lab."),
|
| 197 |
+
("During the next eclipse, astronomers will be observing the moon's surface.", "Describing future scientific activities at a specific event."),
|
| 198 |
+
("This time next year, I will be working on my thesis on marine biology.", "Describing personal future ongoing activities."),
|
| 199 |
+
("Tomorrow at 9 AM, the environmentalists will be cleaning the beach.", "Detailing planned future environmental activities."),
|
| 200 |
+
("Next semester, the students will be studying advanced genetics.", "Outlining future academic plans."),
|
| 201 |
+
("In the next decade, scientists will be exploring the effects of climate change on Arctic ecosystems.", "Predicting future scientific exploration.")
|
| 202 |
+
]
|
| 203 |
+
},
|
| 204 |
}
|
| 205 |
|
| 206 |
tense_selected = None
|