Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 34
type('Hello') type(100) type(12.345) type(2+3j) type(True) print type ([1,2,3]) type ((1,2,3)) type ({'one':1, 'two':2})
<type 'str'> <type 'sage.rings.integer.Integer'> <type 'sage.rings.real_mpfr.RealLiteral'> <type 'sage.rings.complex_number.ComplexNumber'> <type 'bool'> <type 'list'> <type 'tuple'> <type 'dict'>