what is the enhancement of nutrition
Answers
Answered by
1
Answer:
Advances in molecular biology are being exploited to produce crops enhanced in these key nutrients. Other nutritional targets include the modification of fatty acid composition and the enhancement of antioxidant levels, particularly carotenoids, such as lycopene, and flavonoids.
Answered by
0
Explanation:
rows = int(input("Enter the number of rows: "))
# Outer loop will print number of rows.
for i in range(rows+1):
# Inner loop will print the value of i after each iteration.
for j in range(i):
print(i, end=" ") # print number.
# line after each row to display pattern correctly.
print(" ")
Similar questions