Said Py
Сәуір 13, 2020, 7:10 Т.Қ.

Python-да тізімнің бос екенін қалай тексеруге болады

Балалар, бүгін біз тізімнің бос екенін тексеруді үйренеміз.


  1. #empty list
  2. list_1 = []
  3.  
  4. #checking if list is empty by using len()
  5. if not llist_1:
  6. print('yes! the list is empty.')
  7.  
  8. #output
  9. #yes! the list is empty.

Мақала бойынша сұралады0сұрақтар(лар)

4

Ол саған ұнайды ма? Әлеуметтік желілерде бөлісіңіз!

Анатолий Жучков
  • Сәуір 13, 2020, 7:25 Т.Қ.
  1. #empty list
  2. list_1 = []
  3. #ноль, пустой кортеж, пустой список, пустая строка принимаются как False
  4. if not list_1:
  5. print('yes! the list is empty.')
  6.  
ИГ
  • Сәуір 14, 2020, 11:12 Т.Ж.
  • (өңделген)

Автор, очень плохой совет, не делайте так никогда.

делайте как написал Анатолий Жучков, в коментариях

Said Py
  • Сәуір 15, 2020, 6:16 Т.Ж.

thanks
but if i wanna to check if list is exists how can i do that?

Evgenii Legotckoi
  • Сәуір 15, 2020, 1:11 Т.Қ.

It works similar. If list not exists, then list is None

  1. if list_1:
  2. print('yes! the list is not None')

Therefore the following code is right

  1. list_1 = None
  2.  
  3. if not list_1:
  4. print('the list is empty or None')
Evgenii Legotckoi
  • Сәуір 15, 2020, 1:16 Т.Қ.

And just FYI

I am admin of this site, and I want ask you add special separator in your articles, like this

  1. ___

This is special separator, which separate preview part from main part of article. Please, use it in articles (notes) on this site.

I think you saw some changes in articles after first publication. Just I made moderation and some cleaning of article for improvement of content.

Пікірлер

Тек рұқсаты бар пайдаланушылар ғана пікір қалдыра алады.
Кіріңіз немесе Тіркеліңіз