Iteration என்பது ஒரு set of statements-ஐ repeatedly execute செய்வது. தமிழில்: ஒரே code-ஐ ம……
Iteration in Python - for Loop
Iteration என்பது ஒரு set of statements-ஐ repeatedly execute செய்வது. தமிழில்: ஒரே code-ஐ மீண்டும் மீண்டும் execute செய்வதுதான் Iteration. Python-ல் முக்கிய iteration statements: for while இப்போது for loop-ஐ முழுமையாக பார்க்கலாம்.
Suppose: Hello என்பதை 5 times print செய்ய வேண்டும். Without loop: print("Hello") print(……
இதுதான் iteration.…
for loop flow: Sequence / Range ↓ Take one value ↓ Stor……
Python for loop என்பது ஒரு sequence-ல் உள்ள ஒவ்வொரு item-ஐ one by one ……
Indentation உள்ளதால் இது loop……
range(5) என்றால்: 0, 1, 2, 3, 4 5 inc……
Then sequence finished. Loop ……
இந்த program-ல்: for i in range(5): print(i) ……
for loop உடன் மிகவும் commonly பயன்படு……
1. range(stop) 2. range(start……
Values: 0 1 2 3 4 Default sta……
range(5) means: Start = 0 Sto……
step என்பது ஒவ்வொரு iteration-க்கும் ……
Every time: +2…
Reverse order-ல் loop செய்ய negativ……
for i in range(1, 5, -1): pri……
ஏன்? Start: 1 Stop: 5 ஆனால் step: -1 நாம் 1-ல……
for loop range() மட்டும் அல்ல. List-ஐ நேரடியாக iter……
இதில் x automatic-ஆ list-ல் உள்ள ……
data = (10, 20, 30) for x in ……
data = {10, 20, 30} for x in ……
ஆனால் Set என்பது unordered colle……
String கூட sequence. for ch i……
String-ல் ஒவ்வொரு character-ம……
Dictionary: student = { "name"……
Dictionary-ஐ நேரடியாக iterate……
Values வேண்டுமெனில்: student = { "nam……
Key + value இரண்டும் வேண்டுமெனில்: student = { "na……
இந்த line: for key, value in student.items(): இங்கே items() ஒவ்வொரு item-ஐ: (key, valu……
5 வரை print செய்ய வேண்டும். ஆனால் stop value excluded. ……
for i in range(2, 11, 2): pri……
for i in range(1, 10, 2): pri……
total = 0 for i in range(1, 6……
n = 5…
for i in range(1, 11): print(……
Factorial: 5! = 5 × 4 × 3 × 2……
for loop உள்ளே if பயன்படுத்தலா……
Take i ↓ Check i % 2 == 0 ↓ T……
break என்பது loop-ஐ உடனடியாக stop செய்……
continue என்பது current iteration மட்டும் skip செய்து n……
pass என்பது do nothing placeholder statement. for ……
break ↓ Entire loop stop contin……
Python-ல் for loop-க்கு else பயன்படுத்த……
Loop normally complete ஆனால் else execu……
Completed print ஆகாது.…
ஒரு for loop-க்கு உள்ளே மற்றொ……
Outer loop: 2 times Inner loo……
ஒரு sequence-ல் value மட்டுமல்ல index-உம் வேண்டுமெனில் enumerate() ……
enumerate(): Index + Value இர……
Index 1-லிருந்து தொடங்க: languages = ["Python", "C"……
Python for loop என்பது C/C++ for loop போல exactly இல்லை. C/C++: for(initiali……
Colon missing Wrong: for i in ra……
Indentation missing Wrong: for i in……
Expecting stop value for i in range(5): ……
Wrong range() Wrong: range[5] Corre……
Wrong keyword Wrong: for i of ra……
Basic for: FOR ↓ Take one val……
for variable in sequence: Easy Tamil memory……
1. for loop எதற்காக?…
Repeated execution / iteratio……
1. Python for loop commonly i……
Sequence / iterable.…
1. range(5) values?…
0, 1, 2, 3, 4…
1. range() default start?…
0…
1. range() default step?…
1…
1. Stop value included?…
No…
1. Loop immediately stop செய்……
break…
1. Current iteration மட்டும் ……
continue…
1. Do-nothing statement?…
pass…
1. for inside for?…
Nested for loop…
Question: What is iteration? Iteration is the repeated execution of a block of code. Question: What is the Py……
range() இல்லாமலேயே for loop பயன்படுத்தலாம். Question: What values can come after in? Any iterable object. Exa……
Which keyword is used for ite……
range(1, 5) produces:…
Default start value of range(……
Default step value?…
Which statement exits a loop?…
Which statement skips current……
4 6 1. A loop inside another ……
What does this iterate over? ……
Print 1 to 10 for i in range(……
Print 10 to 1 for i in range(……
Even Numbers for i in range(2……
Odd Numbers for i in range(1,……
Sum 1 to 10 total = 0 for i i……
Iteration │ ├── for └── while for syntax: for variable in sequence: statement Possible sequences: range list ……
Start included Stop excluded ……
Iteration என்பது ஒரு block of code-ஐ repeated-ஆ execute செய்வது. Python for loop ஒரு iterable அல்லது sequence……