- 4
چجوری از توی یک لیست که داخلش حروف اینگلیسی ای تا اف هستش با حلقه فور و این از حرف ای تا سی رو نشون بدم در پایتون
3 Respostas
+ 7
A=[a,b,c,d,e,f]
For i in range(6):
If i<3:
Print(A[i])
یا
A=[a,b,c,d,e,f]
Print(A[0],A[1],A[2])
+ 2
Translation:
How do I get from a list containing the English to FFs with the Forex ring and this to show up in the thumbnail in Python
0
سوال مسخره ای است
list=[“a” ,”b” ,”c” ,”d” ,”e” ,”f”]
for i in list:
if i == (“a” or “b” or “c”)
print (i)