-
Notifications
You must be signed in to change notification settings - Fork 52.3k
Issues: jackfrued/Python-100-Days
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Author
Label
Projects
Milestones
Assignee
Sort
Issues list
希望能添加 python的C++/ CUDA扩展开发教程 以及 python 和 C++混合调试教程【pdb + gdb】.
#1024
opened Apr 30, 2024 by
IamJiangBo
Python program to display Pyramid Pattern
n=5 # number of rows
# outer loop handling the number of rows
for x in range(0,n):
# inner loop handling the number of columns
# values change according toouter loop
for y in range(1,x+1):
# displays the star in pyramid pattern
print("*",end=" ")
print()
#1011
opened Feb 21, 2024 by
ken-opiyo
Previous Next
ProTip!
Add no:assignee to see everything that’s not assigned.