Python, Indentation, Comments, If Statements

preview_player
Показать описание
CT Education
Рекомендации по теме
Комментарии
Автор

this just resolved my headache been having for the whole day. thank you

Gwanluxir
Автор

This really helped me. Thank you for taking the time to make this!

LisaAndGoodtimes
Автор

Thanks to you

You must say which Key should be used for indentation and which key shouldn't
moreover that should be shown. I felt backspace and space keys are error prone.
Tab key might be recommended but I'm not sure. The problem usually not come with few lines
of code rather when it go for large code lines with multiple nested statements so such
explanations are needed!

johnr
Автор

lmao..thank you so much for making it simple

GreyEagle
Автор

Sir,
Can we have video with the below example:

Name = input('Enter Your Name:')
if Name.endswith("Thakur"):
print(" Hello, Thakur")
if Name.startswith('Mukesh'):
print("Hello Mukesh")
elif Name.startswith('Kumar'):
print("Hello Kumar")
else:
print("Hello")
else:
print(" Who is This"

MukeshThakur-khjl