🔹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
🔹Ctrl + Shift + T = Reopen Previously
🔹Ctrl + Tab = Jump to the next open tab
🔹Ctrl + shift + Tab = Jump to the Previous open tab
🔹Ctrl + 1 Through Ctrl + 8 = Jump to a specific tab
🔹Ctrl + 9 = Jump to the rightmost tab
🔹Alt + Home = Open your home page in the
🔹Ctrl + W = Close the current tab
🔹Ctrl + j = Open the downloads page in a new tab
🔹Ctrl + ESC = Open the chrome task manager
🔹 Ctrl + l = Jump to the address bar
🔹Ctrl + K = Search form anywhere on the page
🔹Ctrl + p = Open options to print the current topage
🔹Ctrl + S = Open options to save the current page
🔹Ctrl + R or F5 = Reload the current page
🔹Alt + F4 = Close the current window
🔹Alt + Space Then N = Minimize the current window
🔹Alt + Space Then X = Maximize the current window
🔹Alt + F = Open the Chrome menu
🔹Ctrl + shift + B = Show or hide the Bookmarks bar
🔹Ctrl + Shift + O =Open the History Page In a new Tab
🔹Ctrl + F6 = Skip to web contents #Chrome
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
➀ 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