您所在的位置:首页 - 科普 - 正文科普

python编程一级多少分通过

颐夕
颐夕 04-21 【科普】 509人已围观

摘要Python一级编程题库1.使用Python编写一个程序,将输入的字符串反转后输出。```pythons=input()print(s[::-1])```2.使用Python编写一个程序,计算并输出1

Python一级编程题库

1. 使用Python编写一个程序,将输入的字符串反转后输出。

```python

s = input()

print(s[::1])

```

2. 使用Python编写一个程序,计算并输出1到100之间所有奇数的和。

```python

sum = 0

for i in range(1, 101, 2):

sum = i

print(sum)

```

3. 使用Python编写一个程序,判断一个数是否为素数。

```python

def is_prime(n):

if n <= 1:

return False

for i in range(2, int(n**0.5) 1):

if n % i == 0:

return False

return True

n = int(input())

if is_prime(n):

print("Yes")

else:

print("No")

```

4. 使用Python编写一个程序,求出1到100之间所有能被3整除的数的和。

```python

sum = 0

for i in range(3, 101, 3):

sum = i

print(sum)

```

5. 使用Python编写一个程序,输入两个正整数m和n,计算出它们的最大公约数和最小公倍数。

```python

def ***(m, n):

if n == 0:

return m

return ***(n, m % n)

m, n = map(int, input().split())

lcm = m * n // ***(m, n)

print("最大公约数:", ***(m, n))

print("最小公倍数:", lcm)

```

6. 使用Python编写一个程序,输入一个字符串,将其中的数字字符替换为'',其它字符不变。

```python

s = input()

new_s = ""

for c in s:

if c.isdigit():

new_s = ""

else:

new_s = c

print(new_s)

```

7. 使用Python编写一个程序,输入一个正整数n,求出它的阶乘。

```python

n = int(input())

fact = 1

for i in range(1, n 1):

fact *= i

print(fact)

```

8. 使用Python编写一个程序,输入一个正整数n,输出所有的$n$位自然数中,各位数字之和等于3的数。

```python

n = int(input())

for i in range(10

(n1), 10

n):

if sum(map(int, str(i))) == 3:

print(i)

```

9. 使用Python编写一个程序,输入一个正整数n,输出所有的$n$位自然数中,各位数字都不相同的数。

```python

n = int(input())

for i in range(10

(n1), 10

n):

s = str(i)

if len(set(s)) == len(s):

print(i)

```

10. 使用Python编写一个程序,输入一个年月日,判断是这一年的第几天。

```python

year, month, day = map(int, input().split())

months = [0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]

leap_year = (year % 4 == 0 and year % 100 != 0) or year % 400 == 0

if leap_year:

months[2] = 29

days = 0

for i in range(1, month):

days = months[i]

days = day

print(days)

```

https://ksdln.com/

Tags: python编程教学 python编程一级多少分通过 python一级真题 python一级题库及答案

最近发表

icp沪ICP备2023034348号-27
取消
微信二维码
支付宝二维码

目录[+]