Flat_Eric in a library

Resources

Official Python Download ๐Ÿ”—

  • Install the most recent version of Python 3 for your operating system

Open or Install VS Code ๐Ÿ”—

  • Install the most recent version of Visual Studio Code for your operating system

Install GitHub ๐Ÿ”—

  • Install the most recent version of GitHub for your operating system

GitHub Desktop ๐Ÿ”—

  • Whether you're new to Git or a seasoned user, GitHub Desktop simplifies your development workflow.

Floatingโ€‘point numbers ๐Ÿ”—

  • For a more inโ€‘depth understanding of floatingโ€‘point numbers, you can follow the link

Writing Comments in Python ๐Ÿ”—

  • Comments can be used to explain Python code.
  • Comments can be used to make the code more readable.
  • Comments can be used to prevent execution when testing code.

Python math functions ๐Ÿ”—

  • Module page provides a complete list of every available math function and a clear explanation of what each one does.
  • As you grow as a programmer, the documentation will become one of your most-used resources.

Python Key_words ๐Ÿ”—

  • Follow the link to see a list of Python keywords
  • Python has a set of keywords that are reserved words that cannot be used as variable names, function names, or any other identifiers:

Built-in functions ๐Ÿ”—

  • The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order.

Python String Methods ๐Ÿ”—

  • Python has a set of built-in methods that you can use on strings.
  • Note: All string methods returns new values. They do not change the original string.

Python List Methods ๐Ÿ”—

  • Follow the link to see a list of Python list methods.
  • Python has a set of built-in methods that you can use on lists/arrays.

Python Dictionary Methods ๐Ÿ”—

  • Follow the link to see a list of Python Dictionary methods.
  • Python has a set of built-in methods that you can use on dictionaries.

References