def fun():
a,b=0,1 ---> Define Variables
while b<10: Using While Loop
yield b -- Using Generator Yiled Hear
a,b=b,a+b -- Logic Of Fab
i2=fun() -- Creating object
for i in i2: ---> Using loop
print(i,end=" ")
Output:
1 1 2 3 5 8
Subscribe to:
Post Comments (Atom)
Explain ETL vs ELT Answer ETL Data is: Extract → Transform → Load Transformation happens in Talend server before loading into DB. EL...
-
Difference between tJava,tJavaRow and tJavaFlex component There are three Java components in the Custom Code family: tJava , t...
-
How To Get latest File from Based on Source Folder...... Get The Latest File From Folder -----> Last File in this Fold...
-
Trigger connections define the processing sequence, so no data is handled through these connections. The connection in use will create a d...
No comments:
Post a Comment