Computer Science, asked by shristi8350, 6 months ago

WAP to generae the following series: -1,-2-3,-4,-5,-6,-7,-8,-9,-10​

Answers

Answered by AnshumanRai9910
0

Answer:

Using Python

Explanation:

# Python program to print all the numbers within an interval  

l = -1

u = -10

 for num in range(l, u - 1):  

       print(num)

Answered by SASHANKSAHIL
1

Answer:

I have pinned the answer image you can check it out dear

if you will run 1st image program you will get the output in list form and if you run 2nd image program you will get output in series

Hope you may get it

Mark as brainliest

Thank You...

Attachments:
Similar questions