welcome to star bubble
Hi, ❤💛
Friday, November 19, 2021
QUOTES
1. "work for a cause, not for applause......
2. "be strong but not rude........
3. every moment is a fresh beginning...
4. die with memories, not dreams..
5. aspire to inspire, before you expire.
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
words to use instead of :- 1. broad - wide 2. complicated - complex 3. extra...
python code for multiplication tables
#python code for multiplication tables a = int(input("Enter the number: ")) for i in range (1,21): c = a*i print(a, ...
PYHTON CODE TO MAKE A CALCULATOR
#pyhton code to make a calculator def add (x, y): return x + y def subtract(x, y): return x - y def multiply(x, y): return x *...
python code to find a square root maker :-
#python code to make a square root finder number = int(input("enter a number: ")) sqrt = number ** 0.5 print("square root:...
No comments:
Post a Comment