Best Python code snippet using avocado_python
models.py
Source:models.py
2from django.db.models import Q3from django.contrib.auth import get_user_model4from django.utils.text import slugify5from locations.models import State6def n_tuple(n, first=[], last=[]):7 return tuple(first + [(i, i) for i in range(1, n)] + last)8NO_OF_ROOMS = n_tuple(10)9MIN_STAY = n_tuple(90)10MAX_STAY = n_tuple(60, first=[(0, "Unlimited")])11NO_OF_BEDS = n_tuple(20, first=[(0, "-")])12ROOM_RATING = n_tuple(6, first=[(0, "Not rated")])13ORDER = n_tuple(20, first=[(0, "-")])14MAX_GUEST = n_tuple(20, first=[(0, "-")])15ROOM_TYPES = [16 (1, "Apartment"),17 (2, "House"),18 (3, "Garden House"),19 (4, "Bed and Breakfast"),20 (5, "Villa"),21 (6, "Caravan"),22 (50, "Office"),23]24SPACE_TYPES = [(1, "Entire room"), (2, "Private Room"), (3, "Shared Room")]25BATHROOM_TYPES = [(1, "Private"), (2, "Shared")]26CANCELATION_RULES = [(1, "Flexible"), (2, "Semi-flexible"), (3, "Strict")]27UNAVAIL_REASON = [(1, "Unavailable"), (2, "Requested"), (3, "Booked")]28PHOTO_TYPES = [...
9.py
Source:9.py
1#tuple deta type2# a=100,'Lohit'3# print(a)4# list=(1,2,3,4, 'Lohit ')5# print(list)6# #select by index7# print(list[0])8# print(list[2])9# print(list[1])10# list[2]=711# empty_tuple=()12# print(empty_tuple)13# tuple1=(100,200,300)14# tuple2=('lohit','python')15# print(tuple1+tuple2)16# tuple i can not change leter 17#lengeth of tuple18# tuple10=('python','php','java')19# # print(len(tuple10))20# tuples=('add',45345.353,'jpohjhn',5463)21# tinytuple=(123,'join')22# print(tuples[2:1])23# print(tuples[:])24# print(tinytuple*3)25# print(tuples[::-1])26# print('---------------------------------------')27# tup=('physics','maths',1000,249)28# print(tup)29# del tup30# print(tup)31#nested tuple32# n_tuple=('mouse trap', [8,7,6],(1,2,3,4,5, 'yuri'))33# print(n_tuple)34# print(n_tuple[1])35# print(n_tuple[1][1])36# print(n_tuple[2][5][3])37# print('------------------step------------------') 38# my_tuple=('p','u','j','s','g','b','q','m')39# print(my_tuple[:-5])40# print(my_tuple[1:5:2])41# print(my_tuple[0:8:3])42# print('------------------select reverse------------------------') 43# print(my_tuple[0:-2])44tuplex = "w", 3, "r", "s", "o", "u", "r", "c", "e"45print(tuplex)46#tuples are immutable, so you can not remove elements47#using merge of tuples with the + operator you can remove an item and it will create a new tuple48tuplex = tuplex[:2] + tuplex[3:]49print(tuplex)50#converting the tuple to list51listx = list(tuplex) 52#use different ways to remove an item of the list53listx.remove("c") 54#converting the tuple to list55tuplex = tuple(listx)56print(tuplex)57# membership operater58print('---------------------boolean--------------------')59# my_new_operater=('a','b','c','d','e')60# print('a' in my_new_operater)61# print('sei' in my_new_operater)62# # not in operater...
class6.py
Source:class6.py
1# Dictionary to Namedtuple2from collections import namedtuple3temp_dict = {'x': 75, 'y': 55}4# Packing5Point1 = namedtuple("Point", "x, y")6n_tuple = Point1(**temp_dict)7print(n_tuple)8print(n_tuple[0]) # Indexing9print(n_tuple.x + n_tuple.y)10# Unpacking11x, y = n_tuple 12print(x, y)13# namedtuple method "make" -> List to Namedtuple14temp = [50, 10]15a = Point1._make(temp)16print(a)17# "fields" -> inquiring field name18print(a._fields)19# "asdict()" -> ordering dictionary20print(a._asdict())21temp = Point1(10, 20)22print(temp._asdict())23# example) Students Number = 20, Class = 4 (A, B, C, D)24cls = namedtuple('cls', ['rank', 'number'])25students = [cls(rank, number) 26 for rank in 'A, B, C, D'.split(',')27 for number in [str(n) for n in range(1, 21)]]...
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!!