Python Tutorial for Beginners | Part 2 | Print statements, Variables, Comments | by Simply Code

Опубликовано: 18 Февраль 2026
на канале: Simply Code
85
11

Thank you so much guys for watching this video. Hope you guys enjoyed. If you Did then like, share and comment on this video, Subscribe to my channel.

Code:
to draw a triangle
print(" /|")
print(" / |")
print(" / |")
print(" /___|")

using variables
name = "derek"
age = 34
print("there was a man named", name, "and he is", age, "year old")

use # for single line comments and """this""" for multi line comments