In Python.
Task:
• Write one-liner códe to print the given series -
0 1 2 3 4 5 0 1 2 3 4 5....N terms.
Difficulty: Medium.
Answers
Answered by
36
QUESTION:-
Write one-liner códe to print the given series:-
- 0 1 2 3 4 5 0 1 2 3 4 5....N terms.
Logic:-
- Divide the natural number by 6
Answer:-
print(" ".join(str(i%6) for i in range(int(input("Enter N - ")))))
Dry Run:-
- let accept n as 8
- i will work from 0 to 7
- now, when I is 0,
- print(i%6) will print 0
- when I is 1 then it will print 1
- similarly when I will become 6 then 6%6=0 therefore, it will print 0
- when I will become 7 then 7%6= 1
Note:-
- % returns remainder.
Attachments:
Anonymous:
Keep it up! :fb_wow:
Similar questions
English,
1 month ago
India Languages,
1 month ago
Math,
2 months ago
Math,
10 months ago
Chemistry,
10 months ago