PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Function to print the title with a delimiter
def show_title(title):
print("\n" + "=" * 48)
print(title)
print (" 🔥Comprehensive Guide to Python Basics🔥 ")
# 1️⃣ Printing in Python
show_title("1️⃣ Printing in Python (Print)")
print("📌 General Formula:")
print("print(text or variable)")
print("\n📝 What do you write in the code?")
print('print("Welcome to Python!")')
print("\n🎯 Practical Example:")
print("Welcome to Python!")
# 2️⃣ Variables
show_title("2️⃣ Variables in Python")
print("📌 General Formula:")
print("Variable_Name = value")
print("\n📝 What do you write in the code?")
print("name = 'Ali'")
print("age = 12")
print("\n🎯 Practical example:")
name = "Ali"
Enter to Rename, Shift+Enter to Preview
OUTPUT
Запуск