How to Create a Super Hello World program in Python using Visual Studio 2022

ðŸ‘Ļ‍ðŸŦ 4K | How to Create a Super Hello World program in Python using Visual Studio 2022.

🚀 (THA) āļŠāļ­āļ™āđ€āļ‚ีāļĒāļ™āđ‚āļ›āļĢāđāļāļĢāļĄ Hello World āđ‚āļ”āļĒāđƒāļŠ้āļ āļēāļĐāļē Python āđƒāļ™ Visual Studio 2022 (āđƒāļŦāļĄ่āļĨ่āļēāļŠุāļ”!)





Python Source Code by iBasskung.


# Python Comment: Super Hello World Console Application 2022 Demo by iBasskung.

# Print a message onto the screen using the print() function.
print('Hello, World! Hello, Python!')

# New line
print()

# Declare and assign a string to a variable.
myname = "Tanin Sangngam"

# String concatenation.
# \n = New line
print("My name is ", myname + ".\n")

# Assigning multiple variables in one line.
ms, vs, st = "Microsoft", "Visual", "Studio"

visualstudio = ms + " " + vs + " " + st

"""
Python Multi-line comments
How to add tow numbers in Python
Use the + operator to add two numbers.
"""

x = 2000
y = 22
z = x + y # = 2022

# Concatenate strings and numbers
# Casting | Convert the integer to a string using the str() function.
myide = visualstudio + " " + str(z)

# Print the results on the screen.
print(myide)

# New line.
print()

print('Thank you so much for watching. Please like my video ^_^')

# New line.
print()

#END


ðŸŽŊ See more:
ðŸ“ē YouTube: https://www.youtube.com/c/iBasskung
ðŸ“ē Facebook: https://www.facebook.com/CodeAMinute
ðŸ“ē Udemy: https://www.udemy.com/user/tanin-sangngam
ðŸ“ē SkillLane: https://www.skilllane.com/instructors/iBasskung


ðŸ’Ŋ THANK YOU SO MUCH ðŸ’Ŋ


#Python #HelloWorld #VisualStudio2022 #FirstProgram #iBasskung #ComputerProgramming

Comments