CHAPTER 1 INTRODUCTION TO PYTHON ⇒ Python is object oriented ,high level ,dynamic and multipurpose language. ⇒ Python supports multiple programming pattern including object oriented programming ,imterprative and functional programming. WHAT IS PYTHON ⇒ We don't need to use data types to declare variable because it is dynamically typical so we can write a=10 to declare on integer value in a variable. ⇒ Python makes the development and debugging fast because there is no compitation step included in python. SCOPE OF PYTHON ⇒ Console based application ⇒ GUI based application ⇒ Audio/Video band application ⇒ 3D CAD application ...
EXAMPLE:-02 Check character is vowels or not Source-code: '''Check character is vowels or not ''' ch=input('Enter the character:') if(ch=='a' or ch=='e' or ch=='i' or ch=='o' or ch=='u' or ch=='A' or ch=='E' or ch=='O' or ch=='I' or ch=='U'): print('Character is vowel') else: print('character is not vowel') Output previous
Thank you for sharing the article.
ReplyDeleteBest Python Online Training Institute