7. W hich of these is not a legal numeric type in Python ? (a) int ( b ) float (c) decimal.
decimal is not a legal numeric type in python.
i) to change the default separator, argument sep will be changed. e.g. print(‘Aman’, ‘is’, ‘awesome’, sep=’@’) will print Aman@is@awesome ii) to print the following line in the current line, set argument end=” e.g. print(‘Aman is’, end=”) print(‘awesome’) will print Aman is awesome