项目作者: anishchapagain

项目描述 :
Python Scripts for Educational Purpose - Learn Python (Level - Basic to Advance)
高级语言: Jupyter Notebook
项目地址: git://github.com/anishchapagain/PythonNotes.git
创建时间: 2017-03-11T03:14:47Z
项目社区:https://github.com/anishchapagain/PythonNotes

开源协议:

下载


“PythonNotes” {{ page.title | smartify }}

Python Scripts for Educational (Learning) Purpose - {{ site.time | date_to_long_string }}



“Python is a programming language that lets you work quickly and integrate systems more effectively.”

  1. Code readability (concept expression with simple language element)
  2. Fewer lines of Code, comparing with C, C++ or Java.
  3. Large and comprehensive Library
  4. Multiple OS supported
  5. Python Programs are portable, embedding Python codes to from C.
  6. Useful Python Standard Library (Python Installation)
  7. Python mostly used for Data Science and Machine Learning.



{% highlight python %}

  1. #Identity: is , is not
  2. a= True
  3. b= True
  4. print("\n a is b : ", (a is b))
  5. print("\n a is not b : ", (a is not b))
  6. #Membership: in, not in
  7. word = "Python"
  8. print("\n 'P' in Python : ",('P' in word))
  9. print("\n 'A' not in Python : ",('A' not in word))
  10. {% endhighlight %}