Skip to main content

Command Palette

Search for a command to run...

Python For Beginners

Updated
β€’1 min readβ€’View as Markdown
S

Highly Enthusiastic and Motivated Software Engineer with Hands on Experience/Knowledge in Requirement Gathering ,Developing and Testing an application. Experience in automating, optimizing, streamlining deployment and release processes.

Python is a high-level, easy-to-learn, interpreted language.

Used for web development, data analysis, AI, automation, and more.

File extension: .py


🐍 1. Introduction to Python

  • Python is a high-level, easy-to-learn, interpreted language.

  • Used for web development, data analysis, AI, automation, and more.

  • File extension: .py


πŸ“˜ 2. Basic Syntax

# This is a comment
print("Hello, World!")  # Prints text to the screen

πŸ”€ 3. Variables and Data Types

name = "Souky"       # string
age = 30             # integer
height = 5.4         # float
is_student = False   # boolean
  • You don’t need to declare data types β€” Python detects automatically.

More from this blog

AWS AI- PROMPT ENGINEERING For the AWS Certified AI Practitioner (AIF-C01) exam, prompt engineering is one of the most important topics. It is the process of writing effective instructions (prompts) to get the best response from a foundation model such as Amazon Nova, Anthropic Claude, Meta Llama, or AI21 models in Amazon Bedrock. What is Prompt Engineering? Definition: Prompt engineering is the practice of designing prompts that guide an AI model to produce accurate, relevant, and useful outputs.

Types of Prompting Zero-Shot Prompting No examples are given. Example: Translate "Good morning" into French. One-Shot Prompting Give one example. Example: Input: Apple β†’ Fruit Now answer: Carrot β†’

Aug 3, 20262 min read

Souky@Technical

13 posts

Software Best Practices