learningStar
learningStar
  • 1 249
  • 97 547
9_Creating python Age Group Classifier mini project
Creating a Python Age Group Classifier Mini Project
Introduction
Welcome to this mini project on creating an age group classifier using Python! This project will guide you through building a machine learning model that categorizes individuals into different age groups based on their age. By the end of this project, you'll have a functioning classifier and a better understanding of machine learning concepts.
Project Overview
The age group classifier will use a dataset containing age information and assign each age to a predefined age group category, such as "Child," "Teenager," "Adult," and "Senior." We'll use Python and popular machine learning libraries to build, train, and evaluate the classifier.
Prerequisites
Before starting this project, you should have:
Basic knowledge of Python programming.
Familiarity with machine learning concepts.
Python installed on your computer along with necessary libraries (e.g., NumPy, pandas, scikit-learn).
Steps to Create the Age Group Classifier
Step 1: Importing Libraries
First, import the necessary libraries for data manipulation, machine learning, and visualization.
python
import numpy as np
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import LabelEncoder
from sklearn.ensemble import RandomForestClassifier
from sklearn.metrics import accuracy_score, classification_report
import matplotlib.pyplot as plt
Step 2: Creating the Dataset
For this project, we'll create a simple dataset with age information and corresponding age group labels.
python
# Sample dataset
data = {
'Age': [3, 14, 22, 35, 45, 65, 78, 15, 29, 52, 10, 42, 67, 8, 18],
'AgeGroup': ['Child', 'Teenager', 'Adult', 'Adult', 'Adult', 'Senior', 'Senior', 'Teenager', 'Adult', 'Adult', 'Child', 'Adult', 'Senior', 'Child', 'Teenager']
}
# Convert to DataFrame
df = pd.DataFrame(data)
Step 3: Preprocessing the Data
Label encode the age group categories to convert them into numerical values.
python
# Label encoding
label_encoder = LabelEncoder()
df['AgeGroup'] = label_encoder.fit_transform(df['AgeGroup'])
Step 4: Splitting the Data
Split the dataset into training and testing sets.
python
# Split the data
X = df[['Age']]
y = df['AgeGroup']
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
Step 5: Building the Classifier
Create and train a Random Forest classifier.
python
# Initialize the classifier
classifier = RandomForestClassifier(n_estimators=100, random_state=42)
# Train the classifier
classifier.fit(X_train, y_train)
Step 6: Evaluating the Model
Make predictions on the test set and evaluate the model's performance.
python
# Make predictions
y_pred = classifier.predict(X_test)
# Evaluate the model
accuracy = accuracy_score(y_test, y_pred)
print(f'Accuracy: {accuracy}')
print(classification_report(y_test, y_pred, target_names=label_encoder.classes_))
Step 7: Visualizing the Results
(Optional) Visualize the age distribution and the classification results.
python
# Plot age distribution
plt.hist(df['Age'], bins=10, edgecolor='k')
plt.xlabel('Age')
plt.ylabel('Frequency')
plt.title('Age Distribution')
plt.show()
Conclusion
Congratulations! You've successfully created an age group classifier using Python. This mini project provided hands-on experience with machine learning concepts, including data preprocessing, model training, and evaluation. Experiment with different models and parameters to improve your classifier's performance.
I hope this helps you create a valuable and engaging mini project! If you need more details or further assistance, feel free to ask. Happy coding! 👩‍💻👨‍💻😊
มุมมอง: 3

วีดีโอ

4_Tradings invisible cost
2 ชั่วโมงที่ผ่านมา
Trading's Invisible Costs Introduction Welcome to this tutorial on "Trading's Invisible Costs." While many traders focus on visible costs like commissions and fees, there are numerous hidden costs that can significantly impact trading performance. This tutorial will explore the less obvious expenses associated with trading and provide strategies to manage them effectively. What Are Invisible Co...
3_What is trading is
5 ชั่วโมงที่ผ่านมา
🌟 Welcome to My Channel! 🌟 In this video, we're diving deep into the world of trading! 📈💰 Whether you're a complete beginner or just looking to sharpen your knowledge, this video is your go-to guide for understanding what trading is all about. 📌 What You’ll Learn: Definition of Trading: An overview of what trading is and its various types. Financial Markets: Introduction to different markets wh...
How to Create a PowerPoint Presentation Template tutorial template 16 picture present
มุมมอง 46 ชั่วโมงที่ผ่านมา
This comprehensive tutorial is designed to guide you through the essential steps of using ETABS software for structural analysis and design. Whether you're a beginner or looking to refine your skills, this tutorial covers everything you need to know to effectively utilize ETABS. Key Features: Step-by-Step Instructions: Follow along with detailed, easy-to-understand instructions for each step of...
8_Creating python Grade Calculator mini project
มุมมอง 36 ชั่วโมงที่ผ่านมา
Title: Creating Python Grade Calculator Mini Project Description: 🌟 Welcome to My Channel! 🌟 In this video, we’re diving into an exciting Python project - building a Grade Calculator from scratch! 🎓🖥️ Whether you're a beginner or looking to brush up your coding skills, this step-by-step tutorial has got you covered. 📌 What You’ll Learn: Setting up your Python environment Taking user input for s...
Power point tutorial : 3D models
มุมมอง 1319 ชั่วโมงที่ผ่านมา
PowerPoint Tutorial: 3D Models This tutorial will walk you through the steps to effectively utilize 3D models in your PowerPoint presentations. You'll learn how to: Insert 3D Models: Access the 3D Models feature from the Insert tab and choose from the available options or upload your own models. Adjust the View: Rotate, tilt, and pan the 3D models to achieve the desired perspective and fit them...
7_Creating python Calculator mini project
มุมมอง 182 ชั่วโมงที่ผ่านมา
Creating a Python Calculator Mini Project Project Overview: The goal of this project is to create a simple, interactive calculator that can perform basic arithmetic operations such as addition, subtraction, multiplication, and division. The calculator will prompt the user to input two numbers and an operator, then display the result of the calculation. Project Steps: Set Up Your Development Env...
2_TradingView Toolbar Overview
มุมมอง 82 ชั่วโมงที่ผ่านมา
TradingView is a powerful charting platform that offers a wide range of tools and features to analyze financial markets. The toolbar is one of its key components, packed with various functionalities designed to make chart analysis easier and more efficient. Here’s an in-depth look at the different sections of the TradingView toolbar: Main Toolbar: Symbol Search: Allows you to search for and sel...
How to Create a PowerPoint Presentation Template tutorial template 15 picture present
มุมมอง 162 ชั่วโมงที่ผ่านมา
This comprehensive tutorial is designed to guide you through the essential steps of using ETABS software for structural analysis and design. Whether you're a beginner or looking to refine your skills, this tutorial covers everything you need to know to effectively utilize ETABS. Key Features: Step-by-Step Instructions: Follow along with detailed, easy-to-understand instructions for each step of...
Power point tutorial : Shapes
มุมมอง 92 ชั่วโมงที่ผ่านมา
PowerPoint Tutorial: Shapes This tutorial will guide you through the various ways you can work with shapes in PowerPoint. You'll learn how to: Insert Shapes: Select and insert shapes from the menu, and place them on your slides. Resize and Rotate: Adjust the size and orientation of shapes to fit your design needs. Format Shapes: Change the style, fill color, outline, and effects of shapes using...
1_Learning about candles and charts introducing workspace
มุมมอง 94 ชั่วโมงที่ผ่านมา
Learning About Candles and Charts: Introducing Workspace This insightful tutorial is designed to provide a foundational understanding of candles and charts, essential tools for anyone interested in financial trading and analysis. Whether you're a novice or looking to deepen your knowledge, this course will help you navigate these crucial aspects of trading with confidence. Key Features: Basic C...
6_Learning about python input and define first mini project
มุมมอง 64 ชั่วโมงที่ผ่านมา
Learning About Python Input and Defining Your First Mini Project Dive into the world of Python programming with this comprehensive tutorial focused on understanding input functions and embarking on your first mini project. Ideal for beginners, this course will equip you with the fundamental skills needed to interact with users and create simple yet functional Python applications. Key Features: ...
2_ETABs Tutorial How must watch this cours
มุมมอง 34 ชั่วโมงที่ผ่านมา
This comprehensive tutorial is designed to guide you through the essential steps of using ETABS software for structural analysis and design. Whether you're a beginner or looking to refine your skills, this tutorial covers everything you need to know to effectively utilize ETABS. Key Features: Step-by-Step Instructions: Follow along with detailed, easy-to-understand instructions for each step of...
Power point tutorial : Fonts and installing Fonts
มุมมอง 294 ชั่วโมงที่ผ่านมา
Enhance your presentations with this comprehensive tutorial on how to effectively use and manage fonts in PowerPoint. Whether you're a beginner or an experienced user, this tutorial will help you make your slides more visually appealing and professional. Key Features: Font Selection: Learn how to choose the right fonts for your presentation to improve readability and visual impact. Font Install...
How to Create a PowerPoint Presentation Template tutorial template 14 book like
มุมมอง 134 ชั่วโมงที่ผ่านมา
This comprehensive tutorial is designed to guide you through the essential steps of using ETABS software for structural analysis and design. Whether you're a beginner or looking to refine your skills, this tutorial covers everything you need to know to effectively utilize ETABS. Key Features: Step-by-Step Instructions: Follow along with detailed, easy-to-understand instructions for each step of...
Power point tutorial Icons
มุมมอง 167 ชั่วโมงที่ผ่านมา
Power point tutorial Icons
How to Create a PowerPoint Presentation Template tutorial template 13
มุมมอง 307 ชั่วโมงที่ผ่านมา
How to Create a PowerPoint Presentation Template tutorial template 13
0_Starting trading my journey
มุมมอง 17 ชั่วโมงที่ผ่านมา
0_Starting trading my journey
1_ETABs Tutorial Introducing the workspace
มุมมอง 187 ชั่วโมงที่ผ่านมา
1_ETABs Tutorial Introducing the workspace
5_Learning about python variables part 2
มุมมอง 77 ชั่วโมงที่ผ่านมา
5_Learning about python variables part 2
How to Create a PowerPoint Presentation Template tutorial about Graduation template 12
มุมมอง 1159 ชั่วโมงที่ผ่านมา
How to Create a PowerPoint Presentation Template tutorial about Graduation template 12
4_Python Beginner tutorial : Introducing variables
มุมมอง 99 ชั่วโมงที่ผ่านมา
4_Python Beginner tutorial : Introducing variables
How to Create a PowerPoint Presentation Template tutorial about interstellar template 11
มุมมอง 3712 ชั่วโมงที่ผ่านมา
How to Create a PowerPoint Presentation Template tutorial about interstellar template 11
How to Create a PowerPoint Presentation Template tutorial about three item list template 10
มุมมอง 5714 ชั่วโมงที่ผ่านมา
How to Create a PowerPoint Presentation Template tutorial about three item list template 10
How to Create a PowerPoint Presentation Template tutorial for kinder garden template 9
มุมมอง 8016 ชั่วโมงที่ผ่านมา
How to Create a PowerPoint Presentation Template tutorial for kinder garden template 9
3_Python beginner tutorial :Learning about python Comment
มุมมอง 1919 ชั่วโมงที่ผ่านมา
3_Python beginner tutorial :Learning about python Comment
How to Create a PowerPoint Presentation Template tutorial about Starter template 9
มุมมอง 2919 ชั่วโมงที่ผ่านมา
How to Create a PowerPoint Presentation Template tutorial about Starter template 9
How to Create a PowerPoint Presentation Template tutorial about wheat template 8
มุมมอง 5921 ชั่วโมงที่ผ่านมา
How to Create a PowerPoint Presentation Template tutorial about wheat template 8
How to Create a PowerPoint Presentation Template tutorial about Galaxy template 7
มุมมอง 183วันที่ผ่านมา
How to Create a PowerPoint Presentation Template tutorial about Galaxy template 7
How to Create a PowerPoint Presentation Template tutorial about cat template 6
มุมมอง 37วันที่ผ่านมา
How to Create a PowerPoint Presentation Template tutorial about cat template 6

ความคิดเห็น

  • @AL-AMINSHEIKHH
    @AL-AMINSHEIKHH 6 ชั่วโมงที่ผ่านมา

    You’re doing such a great job with your channel! 🎬 Want to take it to the next level? I can help you improve your SEO to get better results. Ping me if you're up for it

  • @learningStar_s
    @learningStar_s วันที่ผ่านมา

    #Getting inputs for our calculater FirstNumber = float(input("Enter the first number:")) SecondNumber = float(input("Enter the second number:")) Operation = input("Select an operation (+, -, *, /):") if Operation =="+": # creating + function Answer = FirstNumber + SecondNumber if Operation =="-": #Creating - function Answer = FirstNumber - SecondNumber if Operation =="*": #Creating * function Answer = FirstNumber * SecondNumber if Operation =="/": #Creating / function Answer = FirstNumber / SecondNumber #Creating outputs print("The result of",FirstNumber,Operation,SecondNumber,"is",Answer)

  • @learningStar_s
    @learningStar_s วันที่ผ่านมา

    StudentName1 = "Alex" StudentName2 = "Lexa" StudentAge1 = 14 StudentAge2 = 15

  • @learningStar_s
    @learningStar_s 2 วันที่ผ่านมา

    #The code for calculating the year of a birth base on age Age = int(input("Please enter your age : ")) print(2025-Age)

  • @PlusEducation-pk1nr
    @PlusEducation-pk1nr 4 วันที่ผ่านมา

    How to increase the size of fonts on all slides

    • @learningStar_s
      @learningStar_s 2 วันที่ผ่านมา

      We don't have a way to increase the size of fonts on all slides but you can manually increase the size of each text and slide

  • @AL-AMINSHEIKHH
    @AL-AMINSHEIKHH 12 วันที่ผ่านมา

    How can I contact you?

  • @AL-AMINSHEIKHH
    @AL-AMINSHEIKHH 16 วันที่ผ่านมา

    Your channel has a lot of potential! 📈 A few small changes in your SEO could make a big difference in your reach. Let me know if you’d like a free report on how to improve it!

    • @learningStar_s
      @learningStar_s 13 วันที่ผ่านมา

      Thank you so much for your suggestion! I am always looking for ways to improve my channel.

  • @bobbybenj
    @bobbybenj 26 วันที่ผ่านมา

    Excellent!

    • @learningStar_s
      @learningStar_s 26 วันที่ผ่านมา

      its nice to hear that thanks

  • @ackschool1953
    @ackschool1953 28 วันที่ผ่านมา

    Dont be exhausted and continue you are working great

    • @learningStar_s
      @learningStar_s 27 วันที่ผ่านมา

      thanks i really need to hear that

  • @ackschool1953
    @ackschool1953 28 วันที่ผ่านมา

    That is amazing I am waiting to see the complete course

    • @learningStar_s
      @learningStar_s 27 วันที่ผ่านมา

      I absolutely complete the course thanks for support

  • @dauraktv
    @dauraktv 28 วันที่ผ่านมา

    Thank you for these videos. Would You reorder the playlist? It plays the videos in reverse from 24 to 1

    • @learningStar_s
      @learningStar_s 28 วันที่ผ่านมา

      i really appreciate you comment and yes absolutely i fix the play list for you and if you need anything i will be happy to help

  • @永波王
    @永波王 หลายเดือนก่อน

    支持❤

    • @learningStar_s
      @learningStar_s หลายเดือนก่อน

      its make my heart happy to hear that

  • @永波王
    @永波王 หลายเดือนก่อน

    不错

    • @learningStar_s
      @learningStar_s หลายเดือนก่อน

      thanks i really appreciate your opinion

  • @AL-AMINSHEIKHH
    @AL-AMINSHEIKHH หลายเดือนก่อน

    Your videos are seriously amazing! 🎉 Have you thought about improving your SEO to get more views? I can help with optimizing titles, tags, and descriptions. Ping me if you're interested!

  • @AL-AMINSHEIKHH
    @AL-AMINSHEIKHH หลายเดือนก่อน

    Loved your recent video! 👏 Have you considered enhancing your SEO to get more views? I can help you fine-tune it for free. Let me know if you’re open to it!

  • @AL-AMINSHEIKHH
    @AL-AMINSHEIKHH หลายเดือนก่อน

    Your videos are seriously amazing! 🎉 Have you thought about improving your SEO to get more views? I can help with optimizing titles, tags, and descriptions. Ping me if you're interested!

    • @learningStar_s
      @learningStar_s หลายเดือนก่อน

      thanks for you opinion . it makes me truly happy .if you want to help me i accept it .tell me how to contact with you thanks at all i appreciate your help

    • @AL-AMINSHEIKHH
      @AL-AMINSHEIKHH หลายเดือนก่อน

      @@learningStar_s Social media links are provided in the channel description and video description.

    • @AL-AMINSHEIKHH
      @AL-AMINSHEIKHH หลายเดือนก่อน

      How can I contact you?

  • @AL-AMINSHEIKHH
    @AL-AMINSHEIKHH หลายเดือนก่อน

    Your content is really good, but it seems to be underperforming in search. 🔍 I can help with SEO improvements to boost your visibility. Interested in a free audit?

  • @Zilaan0
    @Zilaan0 หลายเดือนก่อน

    I tried really hard but to no avail. I’m just starting out and I have a project. Can you help me on the phone? Please tell me how

    • @learningStar_s
      @learningStar_s หลายเดือนก่อน

      yes absolutely give me your telegram id and i will contact with you ! its make me happy to help you and if you want you can call from telegram if you gave your id i will contact you

    • @TobiasRodriguez-qr2nz
      @TobiasRodriguez-qr2nz หลายเดือนก่อน

      @@learningStar_s hello bro, i am from argentina, I find it difficult to read, could you help me?

    • @learningStar_s
      @learningStar_s หลายเดือนก่อน

      @@TobiasRodriguez-qr2nz absolutely what ever you need i will be happy to help if you want i can translate it to your language

  • @MalekgamerDz
    @MalekgamerDz 2 หลายเดือนก่อน

    thank you man

    • @learningStar_s
      @learningStar_s 2 หลายเดือนก่อน

      your welcome its make me happy that my content help you

  • @ahmadfadil4627
    @ahmadfadil4627 3 หลายเดือนก่อน

    Ok

    • @learningStar_s
      @learningStar_s 3 หลายเดือนก่อน

      i don't really understand what you say but thank you for your comment!

  • @YuSiu707
    @YuSiu707 3 หลายเดือนก่อน

    nice one , keep it up:)

    • @learningStar_s
      @learningStar_s 3 หลายเดือนก่อน

      Thanks, will do! i really appreciate your opinion

  • @khangtong7952
    @khangtong7952 3 หลายเดือนก่อน

    The video is actually good not gonna lie, I applied it to my powerpoint and made some edits to make it even better. Thank you!

    • @learningStar_s
      @learningStar_s 3 หลายเดือนก่อน

      Glad I could help! i really happy that my work is useful for you

  • @user-ft5ej1tx5q
    @user-ft5ej1tx5q 3 หลายเดือนก่อน

    I watch a lot of ppt videos. If the video is more than 3 or 4 minutes long, you should include how the ppt will look at the START of the video and the end of the video. Your videos are good, keep it up.

    • @learningStar_s
      @learningStar_s 3 หลายเดือนก่อน

      thanks for the tip its my pleasure i will absolutely use your tip in next videos

  • @corn_bread_eater123
    @corn_bread_eater123 3 หลายเดือนก่อน

    Ferrary 😭😭😭

    • @learningStar_s
      @learningStar_s 3 หลายเดือนก่อน

      its my dream too

  • @deepakeac
    @deepakeac 4 หลายเดือนก่อน

    Not able to learn...are you offering any course to do the learn making stunning ppt

    • @learningStar_s
      @learningStar_s 4 หลายเดือนก่อน

      there are very free courses in youtube and some courses with prices in cites like udemy but i have two opinion for you first if you just need to make a few power point just try by seeing my video and do what i exactly do but if you work with power point presentation i suggest you to see some tutorial courses that are free and also you can use google slide too .if you have any other question i will be happy to help . I hope that i help you a little

  • @deepakeac
    @deepakeac 4 หลายเดือนก่อน

    You are doing animation setting very fast

    • @learningStar_s
      @learningStar_s 4 หลายเดือนก่อน

      sorry for that but you can slow the speed in video setting and thanks for your opinion

  • @glennlennox6737
    @glennlennox6737 4 หลายเดือนก่อน

    The end was too sudden, try adding a fall off

    • @learningStar_s
      @learningStar_s 4 หลายเดือนก่อน

      thanks i appreciate your opinion i am so happy to hear that❤❤❤❤❤❤❤

  • @Kirbopoyo1q2w3e
    @Kirbopoyo1q2w3e 5 หลายเดือนก่อน

    Porque no me sale lo del zoom al intentar hacer eso?

    • @learningStar_s
      @learningStar_s 4 หลายเดือนก่อน

      i dont know but if you send your ppt file for me maybe i can fix the problem

    • @learningStar_s
      @learningStar_s 4 หลายเดือนก่อน

      if you dont have any way to send it too me you can upload it and put the link here for me to check and fix it

  • @Sinaa_mt
    @Sinaa_mt 5 หลายเดือนก่อน

    👍

  • @Sinaa_mt
    @Sinaa_mt 5 หลายเดือนก่อน

    beautiful

  • @Sinaa_mt
    @Sinaa_mt 5 หลายเดือนก่อน

    👍

  • @Sinaa_mt
    @Sinaa_mt 5 หลายเดือนก่อน

    Good

  • @Sinaa_mt
    @Sinaa_mt 5 หลายเดือนก่อน

    Excellent 👍

  • @Sinaa_mt
    @Sinaa_mt 5 หลายเดือนก่อน

    Good

  • @NahidNn-f2t
    @NahidNn-f2t 5 หลายเดือนก่อน

    jack = 15 james = 42 fred = 18 if jack > james : if jack > fred : print("jack is the oldest") if fred > jack : print("fred is the oldest") if james > jack : if james > fred : print("james is the oldest "

  • @ackschool1953
    @ackschool1953 5 หลายเดือนก่อน

    james = 42 fred = 18 jack = 15 if jack > james : if jack > fred : print("jack is the oldest") if fred > jack : print("fred is the oldest") if james > jack : if james > fred : print("james is the oldest "

  • @omidaghdasi
    @omidaghdasi 5 หลายเดือนก่อน

    james = 42 fred = 18 jack = 15 if jack > james : if jack > fred : print("jack is the oldest") if fred > jack : print("fred is the oldest") if james > jack : if james > fred : print("james is the oldest "

  • @fawziamahima6036
    @fawziamahima6036 5 หลายเดือนก่อน

    Good video

  • @Sinaa_mt
    @Sinaa_mt 5 หลายเดือนก่อน

    Very good

    • @learningStar_s
      @learningStar_s 5 หลายเดือนก่อน

      thanks its make me happy to hear that

  • @NahidNn-f2t
    @NahidNn-f2t 5 หลายเดือนก่อน

    The answer is 220

    • @learningStar_s
      @learningStar_s 5 หลายเดือนก่อน

      thats right congratulations

  • @ackschool1953
    @ackschool1953 5 หลายเดือนก่อน

    the answer is 220

    • @learningStar_s
      @learningStar_s 5 หลายเดือนก่อน

      thats right congratulations

  • @ackschool1953
    @ackschool1953 5 หลายเดือนก่อน

    Nice I an waiting for your first session❤❤❤❤🙏🙏

    • @NahidNn-f2t
      @NahidNn-f2t 5 หลายเดือนก่อน

      Me too❤️❤️❤️

  • @Sinaa_mt
    @Sinaa_mt 5 หลายเดือนก่อน

    Very useful 🙏

    • @learningStar_s
      @learningStar_s 5 หลายเดือนก่อน

      thanks❤️❤️❤️❤️

  • @NahidNn-f2t
    @NahidNn-f2t 5 หลายเดือนก่อน

    I cant wait too❤️❤️❤️❤️

    • @learningStar_s
      @learningStar_s 5 หลายเดือนก่อน

      i am so happy to hear that thanks❤️❤️❤️❤️

  • @ackschool1953
    @ackschool1953 5 หลายเดือนก่อน

    I can't wait to see your next sessions

    • @learningStar_s
      @learningStar_s 5 หลายเดือนก่อน

      I am so happy to hear that thanks

  • @MicrosoftSolutions
    @MicrosoftSolutions 5 หลายเดือนก่อน

    Dear Sir, You have done a great job! I am very happy to see your creativity. Can you also praise my work after seeing it?🙏

  • @mabrokaemhamed8248
    @mabrokaemhamed8248 5 หลายเดือนก่อน

    جميل 🎉🎉🎉

  • @نللمونتاج
    @نللمونتاج 5 หลายเดือนก่อน

    Can you provide us with a link to the template that we can use?

    • @learningStar_s
      @learningStar_s 5 หลายเดือนก่อน

      i will try to put the template in a telegram channel for you

    • @نللمونتاج
      @نللمونتاج 5 หลายเดือนก่อน

      @@learningStar_s i will try to put the template in a telegram channel for you

  • @viacheslavkonaichev2013
    @viacheslavkonaichev2013 5 หลายเดือนก่อน

    Baaad

    • @learningStar_s
      @learningStar_s 5 หลายเดือนก่อน

      its my pleasure to hear your opinion and i try to make my self better ❤❤❤

  • @omidaghdasi
    @omidaghdasi 5 หลายเดือนก่อน

    Amazing ❤❤ 🎉