Speed Typing Test in Python

Поділитися
Вставка
  • Опубліковано 29 гру 2024

КОМЕНТАРІ • 42

  • @theGellyfeesh
    @theGellyfeesh 3 місяці тому +1

    I would have been helped with a quick "what is Tkinter?" and by seeing the program run incrementally to visualize what each part of the code is doing. BUT! Still, very awesome and helpful video this was super helpful for my project!

  • @aceldama
    @aceldama 3 роки тому +3

    you get the extra space at the end because windows stupidly adds a
    to the EOL. you can fix this more cleanly by using rstrip(). this will also fix an issue you didn't see where split() adds an extra word at the end because of the extra whitespace character at the end. there's also something worth noting about split(): a empty split() separates on whitespace runs, so s\sy == x\s\s\t
    y == [x, y]

    • @MAAAX2211
      @MAAAX2211 2 роки тому

      that was helpful thanks

  • @ewaar341
    @ewaar341 2 роки тому +2

    Right now if you put one wrong character it doesn’t get red - only after adding second character. Consider binding input_entry to KeyRelease, not KeyPress, to fix it. Then you dont have to do this „-1” trick in if block for turning whole text green

  • @ksj5782
    @ksj5782 2 роки тому +1

    Awesome coding man. Keep it Up. Helped me to understand Tkinter well too.

  • @thepaulcraft957
    @thepaulcraft957 3 роки тому +11

    I've build a typing speed test as a website a few days ago.

  • @s.s.s9795
    @s.s.s9795 Рік тому

    While building this application, when I run it doesn't run properly . The problem is it does not highlight the wrong red and the right one green and it is not counting any of words or characters per seconds or minute.

  • @MathonX
    @MathonX 3 роки тому

    Thanks i was hoping for sooo long that you will make this. THANKS ALOT!!!!

  • @lindalourenco9354
    @lindalourenco9354 8 місяців тому

    Great tutorial! It helped me with my Python project!

    • @cmfoc01
      @cmfoc01 7 місяців тому

      share to me the whole code he wrote in his video

  • @stefrarut5235
    @stefrarut5235 Рік тому

    How to add a new characters to tkinter like Tifinagh letters to be displayed correctly when I type them in input field of tkinter?

  • @vishalkadakia2542
    @vishalkadakia2542 2 роки тому

    if not self.running:
    AttributeError: 'TypeSpeedGUI' object has no attribute 'running'
    How do I fix this?

  • @aymancassim8944
    @aymancassim8944 3 роки тому +1

    Heyy i dont know if its a good place to say this but I got ban from the server cause my account got hacked and it sent so much spam messages and links, please can I someone do something for me

  • @CubeRiser
    @CubeRiser 3 роки тому

    4:45 lol readlines was the same thing but more efficient why did you have to change it?

  • @OmarHosam203
    @OmarHosam203 3 роки тому +1

    Exactly what I need

  • @nischaaaal
    @nischaaaal Рік тому +1

    bro can you give me the source code link or copy paste??

  • @epicboi55
    @epicboi55 Рік тому

    I get the error:
    _tkinter.TclError: cannot use geometry manager pack inside . which already has slaves managed by grid
    why do I get this?

    • @hochanh915
      @hochanh915 Рік тому

      You cannot use the grid and pack at the same root. Mean you need to create a frame. For this exercise, he created a frame for all labels.

  • @viachas2629
    @viachas2629 2 роки тому

    Hi! If press reset before the end of input, "WPS=10, WPM=600".
    If press 1 more time, then everything is reset to zero.
    How to fix it? Why it happens?

    • @Dziobakization
      @Dziobakization 2 роки тому

      inside reset function try to empty the texts string by writing:
      self.texts = ' '

  • @jianweicen819
    @jianweicen819 3 роки тому +2

    Hello, How can I find this source code?

  • @itay882276
    @itay882276 3 роки тому

    did not quite understand whats self.running for

  • @Prashant_066
    @Prashant_066 Рік тому

    Program not runn 😢😢😢

  • @akao2406
    @akao2406 2 роки тому

    self.frame = tk.Frame(self.frame)
    AttributeError: 'TypeSpeedGUI' object has no attribute 'frame'

    • @learnanythingmikko
      @learnanythingmikko 2 роки тому

      You have to put root in for the second self.frame, so it would be self.root

    • @rockingfinisher5019
      @rockingfinisher5019 2 роки тому

      It is showing error in
      if not self.running:

  • @tobotti330
    @tobotti330 Рік тому

    FileNotFoundError: [Errno 2] No such file or directory: 'text.txt'

    • @neverdie6039
      @neverdie6039 Рік тому

      the text and the program have to be in 1 same folder

  • @s.s.s9795
    @s.s.s9795 Рік тому

    Which software you are using while making this application?

  • @ksj5782
    @ksj5782 2 роки тому

    Guys, can some one give explanation of the above implemented typing speed calculation?

  • @e.m6991
    @e.m6991 3 роки тому +1

    Epic!!

  • @_blubla_
    @_blubla_ 3 роки тому

    Hey buddy 🤔is bitcoin mining bot are safe ? Huh

  • @erena.4659
    @erena.4659 3 роки тому +4

    Lol you literally stole the idea from Tech With Tim