How to use 'python astype' in Python

Every line of 'python astype' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
37def astype(a, ty):
38 return F.cast(a, ty)
103def astype(self, dtype):
104 """Changes the (numpy) datatype of the values"""
105 self.values[:] = self.values.astype(dtype)

Related snippets