ch
Feedback
De_Code

De_Code

前往频道在 Telegram

Coders 👨‍💻

显示更多
708
订阅者
无数据24 小时
-17
-530

数据加载中...

标签云
无数据
有任何问题?请刷新页面或联系我们的客服
进出提及
---
---
---
---
---
---
吸引订阅者
十二月 '24
十二月 '24
+1
在0个频道中
十一月 '24
+8
在0个频道中
Get PRO
十月 '24
+90
在0个频道中
Get PRO
九月 '24
+715
在0个频道中
日期
订阅者增长
提及
频道
09 十二月0
08 十二月0
07 十二月0
06 十二月0
05 十二月0
04 十二月+1
03 十二月0
02 十二月0
01 十二月0
频道帖子
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