[Python] Programming language Introduction Classic 100 questions

Source: Internet
Author: User

#-*-coding:utf-8-*-#filename:001.py#title: There are 1,2,3,4 numbers, can make up how many different and no duplicate number of three digits? Output ResultsCNT= 0#count the sum of result forIinchRange (1, 5):     forJinchRange (1, 5):         forKinchRange (1,5):            ifI!=j andI!=k andj!=K:Printi*100+j*10+K-CNT+=1Print "there are three digits with no repetition number:"Cnt
__author__='Li'#-*-coding:utf-8-*-#filename:002.py#Title: The bonuses awarded by the Enterprise are based on the profit commission. Profit (I) less than or equal to $100,000, the bonus can be raised by 10%, the profit is higher than $100,000, less than $200,000, less than 100,000 of the portion of the 10% commission, higher than the portion of 100,000 yuan, Cocoa Commission 7.5%, 200,000 to 400,000, higher than 200,000 yuan of the portion, can commission 5% ; Between 400,000 and 600,000 is higher than the portion of 400,000 yuan, can commission 3%, 600,000 to 1 million, higher than 600,000 yuan portion, can commission 1.5%, higher than 1 million yuan, the portion of more than 1 million yuan by 1% Commission, from the keyboard input month profit I, the total bonus should be issued? I= Int (Raw_input ('Enter the Profit:')) Arr= [1000000, 600000, 400000, 200000, 100000, 0]rat= [0.01, 0.015, 0.03, 0.05, 0.075, 0.1]r=0 forIdxinchRange (0, 6):    ifi > Arr[idx]:#judge, and then calculate the out-of-section, calculating each level separatelyR + = (I-arr[idx]) *Rat[idx]Print(I-arr[idx]) *Rat[idx] I=Arr[idx]Print 'Total Profit:'+ U

[Python] Programming language Introduction Classic 100 questions

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.