LEARN PYTHON NOW What is python programming? Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together Why You Should Learn Python Right Now Python is easy to learn: Easier than c,c++ and java Python is used for web development: Python provides Django framwork for web development Python is used for Game Development: Python provides Pygame framework for Game development. Want a higher salary? Become a python programmer: The average Python developer salary was $107,000 USD/annual. Python is the future of AI and Machine Learning: How About Some Raspberry Pi?Python used in Raspberry Pi : The Raspberry Pi is a credit-card-sized computer that plugs into your TV and a...
Popular posts from this blog
PYTHON TRAINING DAY 2
QUIZ DAY 1
Python Quiz: Day 1 Nihareeka IT Club day 1 quiz........ Python training Which of the following statements is true? Python is a high level programming language. Python is an interpreted language. Python is an object-oriented language. All of the above. What is used to define a block of code (body of loop, function etc.) in Python? Curly braces Parenthesis Indentation Quotation Which of the following is correct? Comments are for programmers for better understanding of the program. Python Interpreter ignores comment. You can write multi-line comments in Python using triple quotes, either ''' or """. All of the above Which of the following is correct? Variable name can start with an underscore. Variable name can start with a digit. Keywords cannot be used as a variable name. Variable name can have symbols like: @, #, $ etc. Next In the following code, n is a/an _______? >>> n='5' integer string tuple ope...