Horje
Mixed Fractions in python Code Example
Mixed Fractions in python
num = int(input('Type numerator'))
dem = int(input('Type denominator'))

a = num // dem
b = num % dem
print 'The mixed number is {} and {}/{}'.format(a, b, dem)




Python

Related
python list of characters Code Example python list of characters Code Example
python numpy euler Code Example python numpy euler Code Example
how to make discord.py rewrite bot dm someone Code Example how to make discord.py rewrite bot dm someone Code Example
propositional logic python Code Example propositional logic python Code Example
how to get the user argent in django Code Example how to get the user argent in django Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7