1. arithmetic.py

    arithmetic.py

    a = int(input("What is the first integer: ")) 
    
    b = int(input("What is the second integer: ")) 
    
    
    
    print('a + b = %d' % (a + b))  
    
    
    
    print('b - a = %d' % (b - a))  
    
    
    
    print('a * b = %d' % (a * b))
    
    read more
  2. taxandtip.py

    Tax and Tip

    #!/usr/bin/env python3 
    
    
    
    # Mina's tax and tip  
    
    # 
    
    # 1. input cost of meal 
    
    # 3. compute the tip of 18 percent of the meal without tax 
    
    # 4. output the tax amount 
    
    # 5. output the tip amount 
    
    # 6. output the grand total 
    
    # 7. format the output so all …
    read more

links