Untitled 2

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

name = "windows"

print(name.upper() + " is a system d'exploition".upper())


prgh = "hey my name is souha"
print(prgh.index("souha"))
print(name[3])
print(prgh)
print(prgh.replace("hey","hello"))

catgr = ['science' , 'math' , 'gestion' , 'math tech']


print(catgr[2:])
print(catgr[:2])
print(catgr[-1])
print(catgr[1:3])
moyn = [17.12 , 16.69 , 15.88 , 16]
catgr.extend(moyn)
print(catgr)
catgr.append('lettre')
catgr.insert(2, 'lettre')
print(catgr)
catgr[1] = "mathlm"
print(catgr[0:2])
catgr.remove('lettre')
catgr.pop()
print(catgr)
print(catgr.index('math tech'))
count = catgr.count('mathlm')
print(count)
catgr.sort()
print(catgr)

name1 = input("entre your name: ")


age = input("entre your age: ")
print("hello " + name1 + " you are " + age + " yo")
num1 = input("entre number1: ")
num2 = input("entre number2: ")
result = int(num1) + int(num2)
print(result)
num3 = input("entre number3: ")
num4 = input("entre number4: ")
result2 = float(num3) + float(num4)
print(result2)

You might also like