DoDaek
Results
2
issues of
DoDaek
## python ``` >>> a = 'alpha' >>> b = 'bravo' >>> d = 'delta' >>> origin = '{} {} charlie {}' >>> new = origin.format(a, b, d) >>> print(new)...
enhancement
## python ``` >>> a = 10.0 >>> type(a) >>> a.is_integer() True ``` ## gpython ``` >>> a = 10.0 >>> type(a) >>> a.is_integer() Traceback (most recent call last): File...
Contributhon2019