❂ sᴏᴜʀᴄᴇ ˢᵃᵐᶦ
513 subscribers
11 photos
7 videos
16 links
😎 Dev : @Sami_Dev

👨‍💻 Programming Channel 👨‍💻

🤠 Channel : @Source_Sami

✨ State Channel : @SD_State

:D
Download Telegram
#سوال #Python


listA = [1,2,3,4,5,6,7]
for i in listA:
if i == 5:
del listA[i]
print(listA)
👍3
#سوال #Python


x = 127
y = 250
result = "X = "+x+"y ="+y
print(result)
👍4
#سوال #Python

X = "Hello , World"
Y = X.split(",")
Z = len(Y[0])
print(Z)
👍4
#سوال #Python
def Z(X,Y):
C = 5
S = (X**Y)+C
return S

H = Z(2,3)
print(H)
👍3
#سوال #Python
A1 = 286
B1 = 350
C1 = 5
1D = (A + B) / C
print(1D)
❤5👍1
#سوال #Python

X = 2
Y = 4
N = 3
F = (X + Y) ** N
print(F)
❤6
#سوال #Python

text = "HELLO_WORLD"
textlist = text.split("_")
text1 = textlist[0]
text2 = textlist[1]
or_text = text1.lower() + text2
print(or_text)
👍4
#سوال #Python

A = 2
B = 2
C = 3

def func1(X,Y):
Z = X**Y
return Z

D = func1(A,B)
E = func1(D,C)

print(E)
👍3
#سوال #Python

text = "Hello , Welcome To Source Sami"

So_Num = text.find("Source")
Sa_Num = text.find("Sami")
Num = So_Num + Sa_Num
print(Num)
👍3
#سوال #Python

text = "hello, Welcome To Source Sami"

capitalize_text = text.capitalize()

print(capitalize_text)
👍3
#سوال #Python

text = "hellO, weLcome to Source Sami"

title_text = text.title()

print(title_text)
❤2👍1
#سوال #Python


text_number = "Source Sami | 20"

text=text_number.split(" | ")[0]
number=int(text_number.split(" | ")[1])

print(type(text), type(number))
👍3
#سوال #Python

string = " (10 * 10) / 5"
print(eval(string))
❤3
#سوال #Python
x = max(1,50,250,522,114)
print(x)
❤3👍1
#سوال #Python

listA = [1,5,25,47,89]
listB = []
for A in listA:
listB.append(A)
print(bool(listB))
❤3
#سوال #python

text = "Sami"
tuple_text = tuple(text)
print(tuple_text)
👍3
#سوال #python

X = (5, 7, 22, 59, 108)
N = []
for Y in X:
N.append(Y)
print(N[-1])
❤5
#سوال #Python

List_A = [1,5,25,39,True]
for index in List_A:
try:
i = int(index)
except:
i = False
print(i)
❤4
#سوال #Python

x = 99.98739268391
y = 2
S = round(x , y)
print(S)
❤6
#سوال #Python

text = "Source Sami"
print(text[::-1])
❤4👍1