Python tutorial for ABSOLUTE Beginners! Return Statement In Python - Episode 26

preview_player
Показать описание
Python tutorial for ABSOLUTE Beginners! Return Statement In Python - Episode 26

Welcome to my Python tutorial for ABSOLUTE Beginners Series.
This Series is going to be MASSIVE content for you for FREE with access to different kinds of EXERCISES that will be uploaded to my website RIGHT AFTER each of my uploads!

Please comment on any question you have below and I will be there to answer you!

#Python,#Tutorial,#Project

🔥 Link to my website for all EXERCISES and the CODE:

Connect with me with:

👍 Subscribe for more Python tutorials like this:

TABLE OF CONTENTS:
00:00 – 03:37 How to use the return statement
03:38 – 08:10 Logic inside functions
Рекомендации по теме
Комментарии
Автор

Let me know how you did with the exercises of this one!

jimshapedcoding
Автор

Hey, well explained! I like the exercise-section on your website. I´m looking for more videos on Python.
This is my solution for the last exercise for this topic:

def int_or_not(list_int):
count = 0
for i in list_int:
if type(i) == int:
count += 1
if count == len(list_int):
return 'This list includes integers only.'
else:
return 'This list does not include only Integers'

But I like your solution more, because it is more straight forward.

olivermorgenstern
visit shbcf.ru