Skip to content
View bchian316's full-sized avatar

Block or report bchian316

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
bchian316/README.md
  • 👋 Hi, I’m @bchian316
  • 👀 I’m interested in python coding
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me
  • 😄 Pronouns: he/him
  • ⚡ Fun fact: ...

i made a factorial calculator!

def factorial(x): value = 1 for i in range(x): value *= i+1 return value def pascaltriangle(x): for i in range(x+1): print(int(factorial(x)/(factorial(i)*factorial(x-i))), end = " ") print(pascaltriangle(19))

Popular repositories Loading

  1. 4X 4X Public

    Python 1

  2. bchian316 bchian316 Public

    Config files for my GitHub profile.

  3. website-test website-test Public

    testing html code

  4. chess chess Public

    My 2024 APCS Semester 1 Final Project

    Java

  5. Fruit-Farmer Fruit-Farmer Public

    6th grade Genius Project

    Python

  6. determinant-calculator determinant-calculator Public

    i was bored so i made this

    Python