Case Digital
Case Digital
  • 234
  • 487 817
How To Display Whitespace In VS Code
In this VS Code tutorial, I show you how to enable or disable the rendering of whitespace within the VS Code editor. Let's get coding!
In case the video gets cut off. Use the menu to do the following:
View ➜ Appearance ➜ Render Whitespace
======== Ask Case Digital ========
If you have a question you would like answered,
fill out the Google form in the link below:
forms.gle/sDto36Hyqd7yHoaT6
======== Python Tutorials ========
ua-cam.com/play/PLlGrSFzwVaNEQqAvTpELK0skpTmyDtaXW.html
======== Python Questions ========
ua-cam.com/play/PLlGrSFzwVaNHrFJDwQ5G9tlEzI-6eS1eq.html
======== Video Timeline ========
0:00:00 - Video Intro
0:00:17 - Enabling Or Disabling Whitespace Rendering In VS Code
#CaseDigital #VSCode #Whitespace
DISCLAIMER: Some of the links here are affiliate links. This means at NO additional cost to you, I may earn a commission if you click through and make a purchase. This helps me to continue to make free content to help you on your coding journey!
Переглядів: 74

Відео

How To Find All The First Letters Of Each Word In A String Using Python
Переглядів 55День тому
In this python tutorial, I show you how to find all the first letters of each word in a string using python! I show you two different methods you can use to get the first letters of words within a string. Let's get coding! Ask Case Digital If you have a question you would like answered, fill out the Google form in the link below: forms.gle/sDto36Hyqd7yHoaT6 Python Tutorials ua-cam.com/play/PLlG...
How To Dynamically Crop Images In Python
Переглядів 147Місяць тому
How To Dynamically Crop Images In Python
How To Check If All List Elements Are True In Python
Переглядів 1252 місяці тому
How To Check If All List Elements Are True In Python
How To Download Images Using Python
Переглядів 992 місяці тому
How To Download Images Using Python
How To Save Frames From A Video In OpenCV Python
Переглядів 2333 місяці тому
How To Save Frames From A Video In OpenCV Python
How To Play A Video In Python Using OpenCV
Переглядів 2423 місяці тому
How To Play A Video In Python Using OpenCV
How to copy a line in VSCode
Переглядів 3713 місяці тому
How to copy a line in VSCode
How To Write An Image In Python Using OpenCV
Переглядів 1173 місяці тому
How To Write An Image In Python Using OpenCV
How To Read An Image In OpenCV Python
Переглядів 763 місяці тому
How To Read An Image In OpenCV Python
How To Resize An Image In Python OpenCV
Переглядів 864 місяці тому
How To Resize An Image In Python OpenCV
How To Randomly Choose From A List Using Probabilities In Python
Переглядів 914 місяці тому
How To Randomly Choose From A List Using Probabilities In Python
How To Make A Quiz Reel In Python
Переглядів 1394 місяці тому
How To Make A Quiz Reel In Python
How To Zip A Folder In One Line In Python
Переглядів 574 місяці тому
How To Zip A Folder In One Line In Python
How To Zip A Folder In Python
Переглядів 1504 місяці тому
How To Zip A Folder In Python
What Does Strip Do In Python
Переглядів 2195 місяців тому
What Does Strip Do In Python
What Does lstrip Do In Python?
Переглядів 1675 місяців тому
What Does lstrip Do In Python?
What Does rstrip Do In Python
Переглядів 915 місяців тому
What Does rstrip Do In Python
How To Create A Business Card With Python
Переглядів 3255 місяців тому
How To Create A Business Card With Python
How To Create A Solar Eclipse In Python
Переглядів 1875 місяців тому
How To Create A Solar Eclipse In Python
How To Run Code In VSCode
Переглядів 2765 місяців тому
How To Run Code In VSCode
What Does Map Do In Python?
Переглядів 1336 місяців тому
What Does Map Do In Python?
How To Empty Your Python List
Переглядів 606 місяців тому
How To Empty Your Python List
What Does Immutable Mean With Respect To Python Strings
Переглядів 426 місяців тому
What Does Immutable Mean With Respect To Python Strings
How To Preview Pip Installs Without Installing Anything
Переглядів 406 місяців тому
How To Preview Pip Installs Without Installing Anything
How To Make A String Repeat In Python
Переглядів 1456 місяців тому
How To Make A String Repeat In Python
How To Visualize Sorting In Python
Переглядів 1187 місяців тому
How To Visualize Sorting In Python
How To Do Selection Sort In Python
Переглядів 487 місяців тому
How To Do Selection Sort In Python
How To Change Datetime To Date In Python
Переглядів 1338 місяців тому
How To Change Datetime To Date In Python
How To Import Functions From Another Python File
Переглядів 7308 місяців тому
How To Import Functions From Another Python File

КОМЕНТАРІ

  • @Py-Finance
    @Py-Finance 2 дні тому

    df = df.rename(columns={})

  • @ironmonkey1990
    @ironmonkey1990 5 днів тому

    thank you!

  • @xtsixxltxqt
    @xtsixxltxqt 10 днів тому

    How do you have those transparent dots in your white spaces?

    • @CaseDigital
      @CaseDigital 10 днів тому

      In vscode there is a display whitespace option and I just turn that on.

  • @why3810
    @why3810 10 днів тому

    no work!!!!!!

    • @CaseDigital
      @CaseDigital 10 днів тому

      Any errors showing up for you? Or what’s not working?

  • @python2585
    @python2585 10 днів тому

    first_letters = str[0] for i in range(1, len(str)): if str[i].isspace(): first_letters += str[i+1] print(first_letters)

  • @Garmartner3
    @Garmartner3 12 днів тому

    This was driving me crazy. Thank you!

  • @ironmonkey1990
    @ironmonkey1990 17 днів тому

    thank you !

  • @EternalBlackBird
    @EternalBlackBird 17 днів тому

    Ok how do you get the first letter of world since you got the first letter of Hello I ask this because I don't want to every words in the setence so I was curious if their is a easier way to do that

    • @CaseDigital
      @CaseDigital 17 днів тому

      So you could count the index of where the “w” for world is at string an do what we did for the “H”. So it would be something like: print(message[7]) But like you pointed out that is tedious and we don’t want to do that for every word so we could use some other saying functions to accomplish this like: w = message.split(“ “)[-1][0] What this does is split message into a list where values are split by a single space so we go from: “Hello world!!!” To [“Hello”, “world!!!”] Now the [-1] tells us to get the last index in the list which is the string “world!!!” And the extra [0] tells us to get the first character in that string. Does that help or make sense? If not I can make a video in this because it’s a good question!

    • @EternalBlackBird
      @EternalBlackBird 17 днів тому

      @@CaseDigital sure it might help me understand better I hope anyway because I am going through words counting letters that have five letters and the first letter of words that start with a, b, and c so looking online is helping a little bit but not going to use something I don't understand and thank you for saying you can make a video on my previous comment

    • @CaseDigital
      @CaseDigital 17 днів тому

      So to make sure I make a helpful video are you looking for methods to count all the words in a single string and get their first characters for each word? For example: Given: x = “hello my name is Bob” Return: [“H”, “m”, “n”, “i”, “B”] or each printed out individually? If I’m not understanding correctly please let me know!

    • @EternalBlackBird
      @EternalBlackBird 17 днів тому

      @@CaseDigital Yeah you are right

  • @hugonilsson8654
    @hugonilsson8654 19 днів тому

    Hello Case Digital!

  • @OmarAbdelrahman-i5r
    @OmarAbdelrahman-i5r 21 день тому

    it would be great if you provide commands in windows

  • @SteveEthridge-d3e
    @SteveEthridge-d3e 23 дні тому

    I asked perplexity a question and it answered perfectly and cited your video. Just thought you’d like to know.

    • @CaseDigital
      @CaseDigital 23 дні тому

      Whoa for real that’s pretty cool! I’ll have to try it! Thanks for letting me know!