Python Bangla tutorial part 5 - Loop (While Loop) | DigiTech | Digitech Academy
Source Code
# This program prints Hello, world!
print('Hello, world!')
Output
Hello, world!
In this program, we have used the built-in print()
function to print the string Hello, world!
on our screen.
Related Post