Concept Generators are used to create iterators, but with a different approach. Generators are simple functions that return an iterable set of items, one at a time, in a special way. When an iteration over a set of items starts using the for a statement, the generator is run. Once the generator's function code reaches a "yield" statement, the generator yields its execution back to the for loop, returning a new value from the set. The generator function can generate as many values (possibly infinite) as it wants, yielding each one in its turn. Code def gen_fun(): yield 1 yield 2 yield 3 yield 4 yield 5 for i in gen_fun(): print(i) >>> 1 2 3 4 5 Screenshot : Quiz Level 1 Quiz Level 2 Request Me
Concept Operation 1: When we are trying to write on file by using Python we have 2 kinds of write mode. i) 'w' stands for write mode but in this mode, the old file will be deleted by new file ii) 'a' also stands for write mode but in this mode, new data will be appended with old file Operation 2: When we are reading data from the file we will be using read mode 'r Write # ['a', 'w'] f = open("demo.txt", 'a') data = input('Enter Some Data :') f.write(data) f.close() Read f = open("demo.txt", 'r') print(f.read()) [ --> Reading whole data ] print(f.readline()) [ --> Reading a single Line ] print(f.readlines()) [ --> Whole data will be devided by newline and convert it as a List] print(f.read(10)) [ --> Will read from postion to postion 10 from a file] f.close() Quiz Level 1 Quiz Level 2 Request Me
Here we will find some interesting Quiz, Contact, Feedback Form Below Test Your Knowledge and Get In Touch With Me Quiz Level 1: Click Here Quiz Level 2: Click Here Request Me Any Topic: Click Here Contact Me: Click Here Feedback: Click Here
Comments
Post a Comment