1. <source id="nejs2"></source>
  2. <video id="nejs2"></video>
    <source id="nejs2"></source>
          1. 首頁 > 筆記大全 > 全民玩Python:從入門到進階

            全民玩Python:從入門到進階

            更新:

            本文將從各個方面詳細闡述全民玩Python的知識點,包括語法基礎、常用庫、框架應用以及實戰項目,旨在幫助初學者快速掌握Python編程。

            一、Python語法基礎

            1、Python數據類型

            <!DOCTYPE html>
            <html>
            <head>
            <title>Python數據類型</title>
            </head>
            <body>
              <script type="text/python">
              # 整型
              a = 10 
              print(type(a)) # <class 'int'>
              
              # 浮點型
              b = 3.14
              print(type(b)) # <class 'float'>
              
              # 字符串
              c = 'hello, world'
              print(type(c)) # <class 'str'>
              
              # 布爾型
              d = True
              print(type(d)) # <class 'bool'>
              
              # 列表
              e = [1, 2, 3, 'a', 'b', 'c']
              print(type(e)) # <class 'list'>
              
              # 元組
              f = (4, 5, 6, 'd', 'e', 'f')
              print(type(f)) # <class 'tuple'>
              
              # 字典
              g = {'name':'Tom', 'age':18, 'gender':'male'}
              print(type(g)) # <class 'dict'>
              </script>
            </body>
            

            2、Python控制語句

            <!DOCTYPE html>
            <html>
            <head>
            <title>Python控制語句</title>
            </head>
            <body>
              <script type="text/python">
              # 條件判斷
              x = 10
              if x > 5:
                  print('x > 5')
              elif x == 5:
                  print('x = 5')
              else:
                  print('x < 5')
                  
              # 循環語句
              for i in range(1, 6):
                  print(i)
                  
              j = 1
              while j <= 5:
                  print(j)
                  j += 1
              </script>
            </body>
            

            二、Python常用庫

            1、Numpy庫

            Numpy是Python的一個用于科學計算的庫,它提供了快速高效的多維數組對象numpy.ndarray以及各種用于對數組進行計算(如通用函數、線性代數運算、傅里葉變換)的工具。

            <!DOCTYPE html>
            <html>
            <head>
            <title>Python常用庫:Numpy庫</title>
            </head>
            <body>
              <script type="text/python">
              import numpy as np
              
              # 創建數組
              arr1 = np.array([1, 2, 3])
              arr2 = np.array([[1, 2, 3], [4, 5, 6]])
              
              # 查看形狀
              print(arr1.shape) # (3,)
              print(arr2.shape) # (2, 3)
              
              # 矩陣計算
              arr3 = np.array([[1, 2], [3, 4]])
              arr4 = np.array([[5, 6], [7, 8]])
              print(np.dot(arr3, arr4)) # [[19 22] [43 50]]
              
              # 廣播機制
              arr5 = np.array([1, 2, 3])
              arr6 = np.array([4])
              print(arr5 + arr6) # [5 6 7]
              
              # 讀寫文件
              np.savetxt('test.txt', arr1, fmt='%d')
              arr7 = np.loadtxt('test.txt')
              print(arr7) # [1 2 3]
              </script>
            </body>
            

            2、Matplotlib庫

            Matplotlib是Python的一個數據可視化庫。它能夠制作出各種靜態、動態的圖表,包括折線圖、散點圖、柱狀圖、餅圖、熱力圖、3D圖等等。

            <!DOCTYPE html>
            <html>
            <head>
            <title>Python常用庫:Matplotlib庫</title>
            </head>
            <body>
              <script type="text/python">
              import numpy as np
              import matplotlib.pyplot as plt
              
              # 折線圖
              x = np.arange(0, 10, 0.1)
              y = np.sin(x)
              plt.plot(x, y)
              plt.title('Sin Function')
              plt.xlabel('x')
              plt.ylabel('y')
              plt.show()
              
              # 散點圖
              x = np.random.randn(100)
              y = np.random.randn(100)
              colors = np.random.randn(100)
              sizes = 1000 * np.random.randn(100)
              plt.scatter(x, y, c=colors, s=sizes, alpha=0.5)
              plt.title('Scatter Plot')
              plt.xlabel('x')
              plt.ylabel('y')
              plt.show()
              
              # 柱狀圖
              labels = ['A', 'B', 'C', 'D']
              values = [10, 20, 30, 40]
              plt.bar(labels, values)
              plt.title('Bar Plot')
              plt.xlabel('Category')
              plt.ylabel('Value')
              plt.show()
              </script>
            </body>
            

            三、Python框架應用

            1、Django框架

            Django是Python的一個開源Web框架,它采用了MVC處理模式,使開發者可以更加快速地開發出完整的、標準化的Web應用程序。Django具有眾多優點,例如高效穩定的ORM、完善的調試工具、強大的Admin后臺管理功能、豐富的插件等等。

            <!DOCTYPE html>
            <html>
            <head>
            <title>Python框架應用:Django框架</title>
            </head>
            <body>
              <p>請自行搭建Django環境并創建項目和應用程序。</p>
              <ul>
                <li>1)編寫模型代碼,實現數據庫操作</li>
                <li>2)編寫視圖函數,處理數據交互和業務邏輯</li>
                <li>3)編寫模板文件,展示頁面內容和效果</li>
              </ul>
              <p>以下示例代碼為一個簡單的商品信息管理系統。</p>
              <script type="text/python">
              # models.py
              from django.db import models
              
              class Product(models.Model):
                  name = models.CharField(max_length=100)
                  price = models.FloatField()
                  description = models.TextField()
              
              # views.py
              from django.shortcuts import render
              from .models import Product
              
              def product_list(request):
                  products = Product.objects.all()
                  return render(request, 'product_list.html', {'products': products})
              
              def product_detail(request, id):
                  product = Product.objects.get(id=id)
                  return render(request, 'product_detail.html', {'product': product})
              
              # product_list.html
              <table>
              <thead>
              <tr>
                  <th>Name</th>
                  <th>Price</th>
              </tr>
              </thead>
              <tbody>
              <!-- 遍歷商品列表 -->
              <{% for product in products %}>
                  <tr>
                      <td><a href="/product/{{product.id}}">{{product.name}}</a></td>
                      <td>{{product.price}}</td>
                  </tr>
              <{% endfor %}>
              </tbody>
              </table>
              
              # product_detail.html
              <h2>{{product.name}} </h2>
              <p>Price: {{product.price}}</p>
              <p>Description: {{product.description}}</p>
              </script>
            </body>
            

            2、Flask框架

            Flask是Python的一個輕量級Web框架,它采用了Werkzeug和Jinja2兩個工具庫,用于實現路由映射、HTTP請求響應處理、模板渲染等功能。Flask具有簡單易學、靈活高效、擴展性好等特點,適用于小型Web應用和API服務。

            <!DOCTYPE html>
            <html>
            <head>
            <title>Python框架應用:Flask框架</title>
            </head>
            <body>
              <p>請自行搭建Flask環境并安裝相關擴展庫。</p>
              <p>以下示例代碼為一個簡單的用戶注冊和登錄系統。</p>
              <script type="text/python">
              # app.py
              from flask import Flask, render_template, request, redirect, url_for, session
              import hashlib
              
              app = Flask(__name__)
              app.secret_key = 'mysecretkey'
              
              @app.route('/')
              def index():
                  return 'Welcome to Flask!'
              
              @app.route('/register', methods=['GET', 'POST'])
              def register():
                  if request.method == 'POST':
                      username = request.form['username']
                      password = hashlib.sha1(request.form['password'].encode()).hexdigest()
                      session['username'] = username
                      session['password'] = password
                      return redirect(url_for('login'))
                  return render_template('register.html')
              
              @app.route('/login', methods=['GET', 'POST'])
              def login():
                  if request.method == 'POST':
                      username = request.form['username']
                      password = hashlib.sha1(request.form['password'].encode()).hexdigest()
                      if session.get('username') == username and session.get('password') == password:
                          return redirect(url_for('index'))
                      else:
                          return 'Username or password is incorrect.'
                  return render_template('login.html')
              
              if __name__ == '__main__':
                  app.run()
              
              # templates/register.html
              <form action="#" method="post">
              <input type="text" name="username" placeholder="Username" required>
              <input type="password" name="password" placeholder="Password" required>
              <input type="submit" value="Register">
              </form>
              
              # templates/login.html
              <form action="#" method="post">
              <input type="text" name="username" placeholder="Username" required>
              <input type="password" name="password" placeholder="Password" required>
              <input type="submit" value="Login">
              </form>
              </script>
            </body>
            

            四、Python實戰項目

            1、Python數據分析

            數據分析是當今

            頂部 久久久久99精品成人片毛片_黃色A片三級三級三級无码_日本不卡高清视频v中文字幕_高清欧美视频一区二区
            1. <source id="nejs2"></source>
            2. <video id="nejs2"></video>
              <source id="nejs2"></source>