What is Python:
Python is an interpreted, high-level and general-purpose programming language. Python was created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace.
Features:
- Easy to code.
- Free and Open source
- Object-Orinted language
- GUI Programming Support
- Portable
- Scalable
- Extensible Feature
- Interpreted language
- Dynamically typed language
- Large standard library
- Cross Platform language
- Embeddable
Do:
1.Write a Program To Print Given Pattern
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
Code:
def pattern(n):
x=0
for i in range(n):
x+=1
for j in range(0,i+1):
print(x,end=" ")
print("\n")
pattern(5)
Note:
Hello Guys, Don't Stop Learning keep Going..............