You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

requirements.py 109B

12345678
  1. import django
  2. def check_django():
  3. print(django.VERSION)
  4. if __name__ == "__main__":
  5. check_django()