Best Python code snippet using lemoncheesecake
03_les_iterations.py
Source:03_les_iterations.py
1# Les Structures Itératives2my_iterator = 03#== BOUCLE WHILE ==4# Phase comparaison et entrée dans la boucle5while my_iterator < 10:6 # Phase de modification de la variable d'itération7 my_iterator += 18 # Phase d'instructions9 if my_iterator == 3:10 continue # Nous passons directement à l'itération suivante11 if my_iterator % 5 == 0:12 break # Nous stoppons la boucle13 if my_iterator % 2 == 0:14 print('Bonjour')15 pass # Nous passons sans rien faire16#== BOUCLE FOR ==17# range(début, fin, pas)18for my_var in range(0, 10, 2):...
iterators.py
Source:iterators.py
1string = "1234567890"2# for char in string:3# print(char)4# my_iterator = iter(string)5# print(my_iterator)6#7# print(next(my_iterator))8# print(next(my_iterator))9# print(next(my_iterator))10# print(next(my_iterator))11# print(next(my_iterator))12# print(next(my_iterator))13# print(next(my_iterator))14# print(next(my_iterator))15# print(next(my_iterator))16# print(next(my_iterator))17# Uncomment below to see StopIteration error18# print(next(my_iterator))19for char in string:20 print(char)21for char in iter(string):...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!