Объяснение:
1.
A=int(input('А='))
B=int(input('B='))
i=A
while i>=B:
print(i, end=" ")
i-=1
2.
for i in range(101,322):
if i%4==0 and i%6>0:
print(i)
3.
n=int(input('N='))
s=[]
for i in range(n):
k=input('Введите число =')
s.append(int(k[::-1]))
for i in (s[:-1]):
print(i,end=', ')
print(s[-1],end=".")