- 181
- 44 271
derekthesec
Приєднався 28 лис 2009
Python Shell Session - Sets
Python Shell Session on Sets and some of their methods (e.g. intersection, union). Can also use operators such as & and |.
Переглядів: 6
Відео
Python Shell Session - Sorting Dictionary Lists
Переглядів 6Місяць тому
Python Shell Session on Sorting Dictionary Lists. Sorting by Name, Year and Length of Keyword Lists. In the Sorting by Keywords Lists, setting reversed to True and using the len function to sort the length of the keywords list in descending order.
Python Shell Session - Sorting Lists
Переглядів 23Місяць тому
Python Shell Session on Sorting Lists. For numeric lists, sort by hexadecimal. For string lists, sort by length, vowel counts (own function) and case (insensitive sorting by case). The reverse parameter is currently false if it is not present. To get items in descending order, the reverse parameter is set to true.
Python Shell Session - List Comprehensions
Переглядів 92 місяці тому
Python Shell Session on List Comprehensions. Getting the square of numbers, word length of words, binary digits of numbers and even numbers. Formatting large numbers with a comma, but can be customised (e.g. hyphen instead of comma). 3,454 would be customised as 3-454. Use of join Method to Convert a list into a string. Use of built-in function sum to get the sum of the numbers.
Python Shell Session - Filtering Lists
Переглядів 102 місяці тому
A Python Shell Session on filtering lists. There are two original lists. One list contains numbers of 482, 107, 391, 172, 49, 234 and 510. The other list contains items of Potatoes, Pasta, Bacon, Leeks, Carrots, Peas and Fish. Filtering numbers greater than 200 gives the new list of 482, 391, 234 and 510. Filtering items beginning with P gives the new list of Potatoes, Pasta and Peas - here w[0...
Python Shell Session - Mapping Lists
Переглядів 173 місяці тому
Use of the built-in function map to create new lists for example. Defining mylist to to have the elements 1, 2, 3, 4, 5 and 6. Defining mylist2 to have the elements Pasta, Potatoes, Carrots, Rice, Bacon, Fish and Spinach. Examples Doubling each element in mylist to return a list with the elements 2, 4, 6, 8, 10 and 12. Calculating the length of each word element in mylist2 to return a list with...
Python Shell Session - NumPy
Переглядів 113 місяці тому
NumPy is a Python Library. To begin with this Python Library, enter import numpy as np. Python Libraries can have aliases. For example, NumPy has the alias of np. Creating, accessing, slicing and printing arrays. Using other Methods such as mean, median, max and min. Performing searches using methods such as where and searchsorted. Using shape and size Properties to get the number of elements i...
Python Shell Session - Lists
Переглядів 114 місяці тому
Python Shell Session to create lists. Using methods such as append and insert. Converting the list into a string, separating by commas. Using built-in functions such as sorted and len. Converting a list into a set and back into a set in order to get the unique elements of a list.
Python Shell Session - String Formatting
Переглядів 444 місяці тому
Python Shell Session to do string formatting such as displaying numbers in binary, hexadecimal or octal format using f-strings or the format method in strings. Number formatting to 2 decimal places. Comma separator for large numbers such as 3309. Scientific format for numbers. Aligning text to the centre, right or left. Fill character of - and width of column to be 20 characters.
Python Shell Session - Strings
Переглядів 555 місяців тому
Python Shell Session on Strings and some of their methods (e.g. lower()). Getting the first character by writing print(text[0]). Slicing to get the first three characters by writing print(text[0:3]). Methods include Lower Case, Upper Case, Splitting by Space (gives a list of words), Centering, Right Justifying, Title Case and Capitalize. Also getting the length of a string as well as converting...
Python Shell Session - Variables, Numbers, Expressions, Strings and Lists
Переглядів 245 місяців тому
Doing a Python Shell Session - Variables, Numbers, Expressions, Strings and Lists. Use of print statement. Defining variable x and giving the value of 4. Giving the expression of x 2 and printing it. The is exponentiation. For example, 4 2 gives 16. Conversion of variable x to a string and then getting the length of the string. Define the variable xstr, which is equal to str(x). The str functio...
Font Selection and Bullets (Unordered Lists) - Word 2021 - Windows 11
Переглядів 605 місяців тому
Selecting the Font 'Gill Sans MT' and then bullets (unordered lists) in Word 2021 - Windows 11. Typed Fish, Bacon, Pasta, Potatoes, Leeks, Carrots, Peas, Sweetcorn, Noodles, Rice and Pizza.
Font Selection (Gill Sans MT) and Typing in Word 2021 - Windows 11
Переглядів 1886 місяців тому
Using Word 2021 in Windows 11 to select the font Gill Sans MT and type the following: The quick brown fox jumps over the lazy dog The five boxing wizards jump quickly Hello World The quick brown fox jumps over the lazy dog
Random Background Color Changer - JavaScript Project
Переглядів 157 місяців тому
By clicking on a button labelled 'Change Background Color' a random dark background color is generated. The Hex Code is shown. Technologies include HTML5, CSS3 and JavaScript. Project available at derektypist.github.io/build-a-random-background-color-changer/ GitHub Repository at github.com/derektypist/build-a-random-background-color-changer Taken from FreeCodeCamp - JavaScript Algorithms and D...
Rock, Paper, Scissors Game - JavaScript Project
Переглядів 147 місяців тому
Rock, Paper, Scissors Game - JavaScript Project
Pyramid Generator - JavaScript Project
Переглядів 417 місяців тому
Pyramid Generator - JavaScript Project
Pokémon Search App - JavaScript Project
Переглядів 7039 місяців тому
Pokémon Search App - JavaScript Project
Telephone Number Validator - JavaScript Project
Переглядів 1549 місяців тому
Telephone Number Validator - JavaScript Project
Statistics Calculator - JavaScript Project
Переглядів 2910 місяців тому
Statistics Calculator - JavaScript Project
Roman Numeral Converter - JavaScript Project
Переглядів 21210 місяців тому
Roman Numeral Converter - JavaScript Project
Todo App - JavaScript Project - Local Storage
Переглядів 2810 місяців тому
Todo App - JavaScript Project - Local Storage
Palindrome Checker - JavaScript Project
Переглядів 14110 місяців тому
Palindrome Checker - JavaScript Project
Role Playing Game - Basic JavaScript Project
Переглядів 1710 місяців тому
Role Playing Game - Basic JavaScript Project
Is it really necessary to use less longitude and latitude?
the most od my favourite fonts
how can we get this code for learning purpose
This project is on a private repository, especially with APIs. Refer to sources such as W3schools.com, Stack Overflow, Geeks for Geeks and Chat-GPT.
Can u please share the code ?
This is on a private GitHub Repository. However, I have a JavaScript Project on FreeCodeCamp - Pokemon Search App (Front End Level) - github.com/derektypist/build-a-pokemon-search-app
sir plz make a pokemon search app project step by step
For HTML - provide the title, container with the form and information (table). For CSS - Import the fonts (optional), body, form, table and styling for Pokemon types. For JavaScript - constants, functions and event listeners.
Thanks.
Please mr. We need same vedio on cash register project .it's challenge me more
GitHub Repository for Cash Register project is github.com/derektypist/build-a-cash-register, Change the value of price and cid in script.js. Live Version is derektypist.github.io/build-a-cash-register/
Thanks... I mean it💯
thanks Alot it help to to complete the project . but i am challenged a lot on the JS course .please recommend me any resources the can help me
Try www.w3schools.com and www.freecodecamp.org. You can also do AI search.
it would be super helpful if you share the code becuse im doing the same thing and im stuck
This is in a private GitHub repository. Refer to w3schools.com and Stack Overflow. Print the Geonames Report and then use CodePen to get the data. Example on Dropdown List - codepen.io/derektypist/pen/oNaRywL
👍 I will go and try it out thank you.😊
Hi !! its amazing. Can you please share the code snippet?
It is on a private repository in GitHub. However, the source code can be viewed in HTML, CSS and JavaScript.
Can you please share this repository?
27 is the First Odd Composite Number that Is Neither Prime nor Semiprime The 1st NonSemiprime is 8 Both 8 and 27 are Cube Numbers , being the Cubes of 2 and 3 respectively And Yes 1 is Neither Prime nor Composite, Nor Semiprime since it only has 1 factors which is none other than 1 itself. Proof= 1. 3x3=9 The 1st Odd Composite Number that Is the 1st odd semiprime 1x9=9 3x3=9 2. 3x5=15 the 2nd odd semiprime 1x15=15 3x5=15 3. 3x7=21 the 3rd odd semiprime 1x21=21 3x7=21 4. 5x5=25 the 4th odd semiprime 1x25=25 5x5=25 5. 3x3x3=27 1x27=27 3x9=27 Since it has more than 4 factors, it is not considered as semiprime. A semiprime number Must have only 4 or 3 factors. If the semiprime has 4 factors then it is a Multiplication between 2 different Primes. If the semiprime has 3 factors then it is a square of a Prime.
Interesting recommendation by UA-cam
Süper Süper siniz video çekimi olmuş ✍
Great shots!
i want this code
Congrats Bro, After receiving AMBCS, can you appear directly in Professional Graduate Diploma in IT Exams, offered by BCS.
Not necessary to appear directly in Professional Graduate Diploma in IT Exams
@@derekthesec Right, but still you can appear, complete the PGDIT Project, and then apply for MBCS, if you want. Is that OK. I am also an affiliate member, thinking of applying AMBCS now.
what happened to the tie videos geez
I have not done any clothes shopping since 2019
I am interested in your Kareoke stories. I am aged 41 and fed up with Wife. I mean life!
Nice i been up there.
good morning so,..
Wow looks great
Nice video
cool tie
Are you a fan of Party Tyme Karaoke? If you are what are the 16 songs are you guessing for Super Hits 37?
Cool! Like A Rolling Stone, and just a whole bunch of badly researched rubbish read in the critics magazines. Where it should be Ed Sheeran!
Do u like ladyboys?
Great video thanks Derek
Hello mister. Can you help me get a copy of the TTC file of Menlo Font by exporting it via Font Book? Thank you!
You can also use Print from the File Menu.
must...find...porn
Very informative stuff Derek. Hope you’re doing well
Won’t be happening this yeah, eh
I love my alkanes in the morning
I remember this game, and I loved it, although it was called "Comp IV" here in the United States.
Yes
Thanks nigga
Very interesting video Derek , liked, have a great day :)ms
Looks so simple on screen Derek , liked, have a great day :)ms
you give me the chills
Just amazing lights and colours :)ms
Wonderful display Derek , wont be long till Christmas , liked and subbed , have a great day :)ms
Now I understand everything
Once again merry christmas Derek lad
sexy x
Hope you're having a good christmas this year lad
wtf
very good.
Huh.
this is the best game I was ever offered. I probably was 10 at the time and it just helped me think outside the box
You will never be alone, there is always a way remember to keep your head up and it will all get better. :)
I love the tie it's orange its also orange it's nice and orange
I saw you somewhere in one of madcatladys vids