5
3

More than 3 years have passed since last update.

PythonとDartの命名規則比較まとめ

Last updated at Posted at 2020-04-12

PythonとDartで違うところは太文字にしました。

対象 Python Dart
クラス UpperCamelCase UpperCamelCase
パッケージ lowercase lowercase_with_underscores
モジュール lowercase_with_underscores lowercase_with_underscores
変数 lowercase_with_underscores lowerCamelCase
引数 lowercase_with_underscores lowerCamelCase
関数 lowercase_with_underscores lowerCamelCase
定数 UPPERCASE_WITH_UNDERSCORES lowerCamelCase

参考

PEP 8 -- Style Guide for Python Code | Python.org
Effective Dart: Style | Dart

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3