how many members are active this channel ? plz comment ur names
Anonymous Poll
100%
Active
0%
Not Active
Which of the following will provide a * character as alternative line ending for the print function?
Anonymous Quiz
0%
ending = '*'
33%
end as *
67%
end = '*'
0%
end to *
β¨ Excel - Formulas & Functions Beginner to Expert Course 2023 β¨
Microsoft Excel Formulas and Functions, VLookup, HLookup, XLookup, Index, Match, Dynamic Array Formulas. MS Excel 2021
https://www.udemy.com/course/excel-formulas-functions-beginner-to-expert-course
> Code:
π Claim Now For Free
Microsoft Excel Formulas and Functions, VLookup, HLookup, XLookup, Index, Match, Dynamic Array Formulas. MS Excel 2021
https://www.udemy.com/course/excel-formulas-functions-beginner-to-expert-course
> Code:
SUBHANALLAH_021323
π Claim Now For Free
Udemy
Excel - Formulas & Functions Beginner to Expert Course
Microsoft Excel Formulas and Functions, VLookup, HLookup, XLookup, Index, Match, Dynamic Array Formulas and more.
Top 10 Github Repositories For Web Developer
1. Web Developer-Roadmap : https://github.com/kamranahmedse/developer-roadmap
2. 30-Seconds-Of-Code : https://github.com/30-seconds/30-seconds-of-code
3. Awesome-Cheatsheets : https://github.com/LeCoupa/awesome-cheatsheets
4. CSS-Protips : https://github.com/AllThingsSmitty/css-protips
5. 33-JS-Concepts : https://github.com/leonardomso/33-js-concepts
6. You-Dont-Know-JS : https://github.com/getify/You-Dont-Know-JS/tree/2nd-ed
7. Front-End-Checklist : https://github.com/thedaviddias/Front-End-Checklist
8. Javascript-Questions : https://github.com/lydiahallie/javascript-questions
9. Clean-Code-Javascript : https://github.com/ryanmcdermott/clean-code-javascript
10. free-programming-books : https://github.com/EbookFoundation/free-programming-books
1. Web Developer-Roadmap : https://github.com/kamranahmedse/developer-roadmap
2. 30-Seconds-Of-Code : https://github.com/30-seconds/30-seconds-of-code
3. Awesome-Cheatsheets : https://github.com/LeCoupa/awesome-cheatsheets
4. CSS-Protips : https://github.com/AllThingsSmitty/css-protips
5. 33-JS-Concepts : https://github.com/leonardomso/33-js-concepts
6. You-Dont-Know-JS : https://github.com/getify/You-Dont-Know-JS/tree/2nd-ed
7. Front-End-Checklist : https://github.com/thedaviddias/Front-End-Checklist
8. Javascript-Questions : https://github.com/lydiahallie/javascript-questions
9. Clean-Code-Javascript : https://github.com/ryanmcdermott/clean-code-javascript
10. free-programming-books : https://github.com/EbookFoundation/free-programming-books
GitHub
GitHub - kamranahmedse/developer-roadmap: Interactive roadmaps, guides and other educational content to help developers grow inβ¦
Interactive roadmaps, guides and other educational content to help developers grow in their careers. - kamranahmedse/developer-roadmap
20 Features of Python || Sweety My World
https://sweetymyworld.blogspot.com/2023/02/20%20Features%20of%20Python%20.html
https://sweetymyworld.blogspot.com/2023/02/20%20Features%20of%20Python%20.html
Sweety My World
20 Features of Python || Sweety My World
Search for Everything
For which type of error does the interpreter halts and reports the error but does not execute the program?
Anonymous Quiz
33%
runtime error
67%
syntax error
0%
run time error
0%
all of these
For which type of error does the interpreter runs the program but halts at error and reports the error as an "Exception"?
Anonymous Quiz
0%
semantic error
33%
syntax error
33%
all type of errors
33%
runtime error
For which type of error does the interpreter runs the program and does not report an error?
Anonymous Quiz
33%
syntax error
0%
semantic error
67%
runtime error
0%
all type of errors
What do you type to enter the interactive help mode of Python?
Anonymous Quiz
25%
HELP
0%
help
75%
help()
0%
save
In IDLE shell, what is the keyboard shortcut for the previous command in history on Windows/Linux?
Anonymous Quiz
50%
Ctrl + P
0%
Alt + P
25%
Page Up
25%
Page Down
In IDLE shell, what is the keyboard shortcut for the next command in history on Windows/Linux?
Anonymous Quiz
50%
Alt + N
50%
Ctrl + N
0%
Page Up
0%
Page Down
what is the output of the python code?
list = ["xyz","zara","pynative"]
print(max(list))
list = ["xyz","zara","pynative"]
print(max(list))
Python programming codes
what is the output of the python code? list = ["xyz","zara","pynative"] print(max(list))
list = ["xyz","zara","pynative","all"]
print(min(list))
print(min(list))
def x(values):
values[0] = 1
v = [2,3,4] x(v) print(x)
values[0] = 1
v = [2,3,4] x(v) print(x)
Anonymous Quiz
25%
[1,2,3]
0%
[2,3,4]
25%
Error
50%
None
#Display the calendar by using the python code
import calendar #first import the calendar library module
from datetime import*
#year = 2023 #mention the past or present or future years
year = date.today().year
month = 1 #mention the 1 to 12 month numbers ββ starting with no zero (0) mention ortherwise the program error display
#then after the print operation to display the output
print(calendar.month(year,month))
print("today date is",date.today().day)
import calendar #first import the calendar library module
from datetime import*
#year = 2023 #mention the past or present or future years
year = date.today().year
month = 1 #mention the 1 to 12 month numbers ββ starting with no zero (0) mention ortherwise the program error display
#then after the print operation to display the output
print(calendar.month(year,month))
print("today date is",date.today().day)
output color Changing in python interpreter
from colorama import Fore
print(Fore.RED + "smw_media")
print(Fore.YELLOW + "smw_media")
print(Fore.BLUE + "smw_media")
print(Fore.GREEN + "smw_media")
print(Fore.CYAN + "smw_media")
from colorama import Fore
print(Fore.RED + "smw_media")
print(Fore.YELLOW + "smw_media")
print(Fore.BLUE + "smw_media")
print(Fore.GREEN + "smw_media")
print(Fore.CYAN + "smw_media")
π1
#print the current date and time
import datetime
now = datetime.datetime.now()
print("Current date and time")
print(now.strftime("%Yyear%mmonth%dday%Hhours%Mminutes%Sseconds"))
import datetime
now = datetime.datetime.now()
print("Current date and time")
print(now.strftime("%Yyear%mmonth%dday%Hhours%Mminutes%Sseconds"))
700+ Python MCQ Question and Answers
1. Python Basic MCQ
2. Python Module MCQ
3. String Formatting in Python
4. Python Generators MCQ
5. Python Variable MCQ
6. Python Data Types
7. Python Operator MCQ
8. Python List MCQ
9. Python Tuple MCQ
10. Python Dictionary MCQ
11. Python Set MCQ
12. Python if else MCQ
13. Python While Loop MCQ
14. Python for Loop MCQ
15. Python Functions MCQ
16. Python File Handling
17. Python Errors and Exceptions Handling
1. Python Basic MCQ
2. Python Module MCQ
3. String Formatting in Python
4. Python Generators MCQ
5. Python Variable MCQ
6. Python Data Types
7. Python Operator MCQ
8. Python List MCQ
9. Python Tuple MCQ
10. Python Dictionary MCQ
11. Python Set MCQ
12. Python if else MCQ
13. Python While Loop MCQ
14. Python for Loop MCQ
15. Python Functions MCQ
16. Python File Handling
17. Python Errors and Exceptions Handling