data = ['123', 'abc', '456', 'def'] for item in data: if not item.isdigit(): # اگر داده عددی نباشد continue print(f"عدد معتبر: {item}")