当前位置:   article > 正文

10个实用的Python编程实例,助你快速掌握Python技巧!_python简单程序举例

python简单程序举例

作为一门简洁易学且强大的编程语言,Python广泛应用于各个领域。本文将向大家介绍10个实用的Python编程实例,通过详细的实例代码帮助读者快速掌握Python的基础知识和常用技巧。

1. 计算阶乘

 def factorial(n):
       if n == 0:
           return 1
       else:
           return n * factorial(n-1)
   
   num = 5
   result = factorial(num)
   print(f"The factorial of {num} is {result}")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

2. 判断素数

def is_prime(n):
       if n <= 1:
           return False
       for i in range(2, int(n/2)+1):
           if n % i == 0:
               return False
       return True
   
   num = 17
   if is_prime(num):
       print(f"{num} is a prime number")
   else:
       print(f"{num} is not a prime number")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

3. 反转字符串

def reverse_string(s):
       return s[::-1]
   
   string = "Hello, World!"
   reversed_string = reverse_string(string)
   print(reversed_string)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

4. 统计列表中元素出现次数

def count_elements(lst, element):
       count = 0
       for item in lst:
           if item == element:
               count += 1
       return count
   
   numbers = [1, 2, 3, 4, 2, 2, 3, 5]
   element_to_count = 2
   result = count_elements(numbers, element_to_count)
   print(f"The element {element_to_count} appears {result} times")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

5. 验证回文字符串

def is_palindrome(s):
       s = s.lower().replace(" ", "")
       return s == s[::-1]
   
   string = "A man a plan a canal Panama"
   if is_palindrome(string):
       print(f"{string} is a palindrome")
   else:
       print(f"{string} is not a palindrome")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

6.生成斐波那契数列

def fibonacci(n):
       seq = [0, 1]
       for i in range(2, n+1):
           seq.append(seq[i-1] + seq[i-2])
       return seq
   
   num_terms = 10
   fib_sequence = fibonacci(num_terms)
   print(f"The Fibonacci sequence up to {num_terms} terms is: {fib_sequence}")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

7. 查找列表中的最大值和最小值

def find_min_max(lst):
       min_value = min(lst)
       max_value = max(lst)
       return min_value, max_value
   
   numbers = [4, 2, 9, 1, 7, 5]
   min_num, max_num = find_min_max(numbers)
   print(f"The minimum value is {min_num} and the maximum value is {max_num}")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

8. 计算平均值

 def calculate_average(lst):
       return sum(lst) / len(lst)
   
   grades = [85, 90, 92, 88, 95]
   average_grade = calculate_average(grades)
   print(f"The average grade is {average_grade}")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

9. 日期格式转换

from datetime import datetime
   
   date_string = "2023-10-12"
   converted_date = datetime.strptime(date_string, "%Y-%m-%d").date()
   print(f"The converted date is {converted_date}")
  • 1
  • 2
  • 3
  • 4
  • 5

10.生成随机数

import random
    lower_limit = 1
    upper_limit = 10
    random_num = random.randint(lower_limit, upper_limit)
    print(f"A random number between {lower_limit} and {upper_limit} is: {random_num}")
  • 1
  • 2
  • 3
  • 4
  • 5

通过以上10个实用的Python编程实例,我们可以学习到许多基本的Python编程技巧,并在实际项目中灵活运用。希望本文所提供的实例能够帮助读者加深对Python的理解,并成为熟练的Python开发者!

---------------------------END---------------------------

题外话

当下这个大数据时代不掌握一门编程语言怎么跟的上脚本呢?当下最火的编程语言Python前景一片光明!如果你也想跟上时代提升自己那么请看一下.

在这里插入图片描述

感兴趣的小伙伴,赠送全套Python学习资料,包含面试题、简历资料等具体看下方。

一、Python所有方向的学习路线

Python所有方向的技术点做的整理,形成各个领域的知识点汇总,它的用处就在于,你可以按照下面的知识点去找对应的学习资源,保证自己学得较为全面。

img
img

二、Python必备开发工具

工具都帮大家整理好了,安装就可直接上手!img

三、最新Python学习笔记

当我学到一定基础,有自己的理解能力的时候,会去阅读一些前辈整理的书籍或者手写的笔记资料,这些笔记详细记载了他们对一些技术点的理解,这些理解是比较独到,可以学到不一样的思路。

img

四、Python视频合集

观看全面零基础学习视频,看视频学习是最快捷也是最有效果的方式,跟着视频中老师的思路,从基础到深入,还是很容易入门的。

img

五、实战案例

纸上得来终觉浅,要学会跟着视频一起敲,要动手实操,才能将自己的所学运用到实际当中去,这时候可以搞点实战案例来学习。

img

六、面试宝典

在这里插入图片描述

在这里插入图片描述

简历模板在这里插入图片描述
若有侵权,请联系删除
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/514649
推荐阅读
相关标签
  

闽ICP备14008679号