0% found this document useful (0 votes)
3 views1 page

Msys Technology

The document contains Python code snippets demonstrating various programming concepts. It includes generating odd numbers from 1 to 20, calculating the factorial of a number, finding the largest number in a list, and using Selenium for web automation. There are some errors in the code, such as incorrect method names and missing arguments.

Uploaded by

seemaingle23
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Msys Technology

The document contains Python code snippets demonstrating various programming concepts. It includes generating odd numbers from 1 to 20, calculating the factorial of a number, finding the largest number in a list, and using Selenium for web automation. There are some errors in the code, such as incorrect method names and missing arguments.

Uploaded by

seemaingle23
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Input: Numbers 1 to 20

# num=[i for i in range(20) if i%2==1]


# print(num)

# def factorial(n):
# if n==0:
# return 0
# elif n==1:
# return 1
# else:
# return n*factorial(n-1)
# print(factorial(10))

# l=[1,2,3,4,5,6]
# largest=l[0]
# for i in l:
# if i>largest:
# largest=i
# print(largest)

# import time
# from selenium import webdriver
# from selenium.webdriver.by import By
# from selenium.webdriver.support import NoSuchElementException
# driver=webdriver.Chrome()
# driver.maximize_window()
# driver.get("www.amazon,in")
# driver.implicit_wait(200)
# driver.find_elment(By.id,'username').sendkey('Admin')
# driver.find_element(By.name,'password').sendkey('12345')
# time.sleep()
# try:
# print('pass')
# except NoSuchElementException:
# print('fail')

You might also like