➀ Free Cpde Camp
⇥ Bset for beginners learning to code. start here if you're at step zero. freecodecamp.org
➁ Scrimba
⇥ Interactive way to learn to code. code alongside your instructor scrimba.com
➂ Github
⇥ Platform to showcase your projects and collaborate with others github.com
➃ Dev Community
⇥ Great community of amazing developers and interesting coding blogs. dev.to
➄ Stack Overflow
⇥ Question and answer site for developers. Go hear when you get stuck stackoverflow.com
➅ GeeksforGeeks
⇥ Tutorials, Blogs, interview questions, test prep, tip and much more. geeksforgeeks.org
Hi🖐️ if you are interested in 🧵↓
⇥ Html
⇥Css
⇥ Python
⇥ JavaScript
💠Full-Stack Web Development
and... lot more about tech!
Follow Me. @souravWD
i am planning on using Twitter to share a lot of content that you won't want to miss.
• • •
Missing some Tweet in this thread? You can try to
force a refresh
🔹ALT + F4 ⇥ Close the current window.
🔹ALT + Space Then N ⇥ Minimize the current window.
🔹Alt + Space Then X ⇥ Minimize the current window.
🔹Alt + F Then X = Quit Google Chrome
🔹Alt + F = Open the chrome menu
🔹Alt + Shift + B = Show or Hide the Bookmarks bar
🔹Ctrl + Shift + O = Open the bookmarks manager
🔹Ctrl + H = Open the History page in a new tab
🔹Ctrl + F6 = Skip to web contents
🔹Ctrl + n = Open a new Window
🔹Ctrl + Shift + N = Open a New Window in Incognito Mode
🔹Ctrl + T = Open a new Tab
➀ all ()
🔹This function returns True, if all element of the iterable are True or itcrable is empty.
EX:-
a = array([100,200,300,400,500])
b = array([100,200,300,400,500])
c=a==b
all(c)
➁ any ()
🔹 This function returns True, if any one element of the iterable is True. if iterable is empty then returns False.
EX:-
a = array([100, 200, 300, 400, 500])
b = array([100,20,30,400,50])
c=a == b