708
Subscribers
No data24 hours
-17 days
-530 days
Data loading in progress...
Similar Channels
Tags Cloud
No data
Any problems? Please refresh the page or contact our support manager.
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
December '24
December '24
+1
in 0 channels
November '24
+8
in 0 channels
Get PRO
October '24
+90
in 0 channels
Get PRO
September '24
+715
in 0 channels
| Date | Subscriber Growth | Mentions | Channels | |
| 09 December | 0 | |||
| 08 December | 0 | |||
| 07 December | 0 | |||
| 06 December | 0 | |||
| 05 December | 0 | |||
| 04 December | +1 | |||
| 03 December | 0 | |||
| 02 December | 0 | |||
| 01 December | 0 |
Channel Posts
| 2 | https://youtube.com/shorts/5EgUF2oL0x0?si=03bO0UEVwxPrL8AU | 280 |
| 3 | https://youtu.be/_vu-T1xkZ8U?si=Za848NOKKbNiVFwq | 252 |
| 4 | https://youtu.be/YNB2XqV5CH4?si=TEm5ppSqjj2nINdP | 230 |
| 5 | https://youtube.com/shorts/zTmsmwr0lOw?si=-08kr6FPiCcAyybC | 203 |
| 6 | https://youtube.com/shorts/EAbTROm8skI?si=-fINz7elZ-2akzaP | 189 |
| 7 | https://youtu.be/U2tRBTS3gcA?si=Z52w1Jj_2X9N7uFp | 218 |
| 8 | https://youtube.com/shorts/viiZjdRY500?si=kJkwfRnLc1VwSsPI | 224 |
| 9 | https://youtube.com/shorts/c0sbLEQhmVA?si=KC8mJQT1puAhOEPi | 190 |
| 10 | https://youtube.com/shorts/goJ5gprPJQc?si=I-LP33HlxQU-fA2k | 175 |
| 11 | https://youtube.com/shorts/CfbunDZM2W0?si=-wXt_XGjnJkT6qyM | 182 |
| 12 | https://youtube.com/shorts/dlLURJ3-0hY?si=mrOVjrMB7_GCqz5T | 185 |
| 13 | https://youtube.com/shorts/uuSIsL9-3M4?si=MoD8KX0LSA1-Z7sB | 221 |
| 14 | https://youtube.com/shorts/Yy5itVzJzT4?si=1vCD8-PnOv3QZG76 | 201 |
| 15 | https://youtube.com/shorts/saX3KKU82fE?si=dYrd_qX7iFRtGP3C | 244 |
| 16 | Sum of Numbers
Write a Python program to find the sum of all numbers from 1 to n, where n is a positive integer provided by the user.
python
n = int(input("Enter a positive integer: "))
total = sum(range(1, n + 1))
print(f"The sum of numbers from 1 to {n} is {total}.")
Factorial Calculation
Write a Python program to calculate the factorial of a number n using a loop.
python
n = int(input("Enter a number: "))
factorial = 1
for i in range(1, n + 1):
factorial *= i
print(f"The factorial of {n} is {factorial}.")
Palindrome Check
Write a Python program to check if a given string is a palindrome.
python
s = input("Enter a string: ")
if s == s[::-1]:
print(f"'{s}' is a palindrome.")
else:
print(f"'{s}' is not a palindrome.")
Fibonacci Sequence
Write a Python program to generate the first n numbers in the Fibonacci sequence.
python
n = int(input("Enter the number of Fibonacci terms to generate: "))
a, b = 0, 1
for _ in range(n):
print(a, end=' ')
a, b = b, a + b
print()
Prime Number Check
Write a Python program to check if a given number is a prime number.
python
n = int(input("Enter a number: "))
if n > 1:
for i in range(2, int(n**0.5) + 1):
if n % i == 0:
print(f"{n} is not a prime number.")
break
else:
print(f"{n} is a prime number.")
else:
print(f"{n} is not a prime number.")
List Reversal
Write a Python program to reverse a given list.
python
lst = [int(x) for x in input("Enter a list of numbers separated by spaces: ").split()]
reversed_lst = lst[::-1]
print("Reversed list:", reversed_lst)
Count Vowels in a String
Write a Python program to count the number of vowels in a given string.
python
s = input("Enter a string: ")
vowels = 'aeiou'
count = sum(1 for char in s.lower() if char in vowels)
print(f"The number of vowels in the string is {count}.")
Temperature Conversion
Write a Python program to convert temperature from Celsius to Fahrenheit.
python
celsius = float(input("Enter temperature in Celsius: "))
fahrenheit = (celsius * 9/5) + 32
print(f"{celsius} Celsius is equal to {fahrenheit} Fahrenheit.")
Multiplication Table
Write a Python program to display the multiplication table of a number n.
python
n = int(input("Enter a number to display its multiplication table: "))
for i in range(1, 11):
print(f"{n} x {i} = {n * i}")
Remove Duplicates from a List
Write a Python program to remove duplicates from a list.
python
lst = [int(x) for x in input("Enter a list of numbers separated by spaces: ").split()]
unique_lst = list(set(lst))
print("List after removing duplicates:", unique_lst) | 328 |
| 17 | https://youtube.com/shorts/s2uED5xtbEQ?si=8mX17Hm8UnY7Em2u | 239 |
| 18 | Keywords in python are
The list of keywords are:
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break',
'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if',
'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield'] | 272 |
| 19 | Python
is a widely used general-purpose, high level programming language. It was created by Guido van Rossum in 1991 and further developed by the Python Software Foundation. It was designed with an emphasis on code readability, and its syntax allows programmers to express their concepts in fewer lines of code. Python is a programming language that lets you work quickly and integrate systems more efficiently. There are two major Python versions: Python 2 and Python 3. Both are quite different. | 289 |
| 20 | And if you have any doubt in that i will make a video of solutions. | 268 |
