I program with Scratch in my free time and need help?
Hello, I wanted to ask if someone could show me how to encrypt texts (without punctuation) using the Caesar cipher, i.e. in scratch?
Thanks in advance
Hello, I wanted to ask if someone could show me how to encrypt texts (without punctuation) using the Caesar cipher, i.e. in scratch?
Thanks in advance
Learn an instrument and make music with it, or learn proper programming languages (e.g. C++) and write computer code for hacking, bots, artificial intelligence, etc. You never stop learning, and you should also be mathematically gifted if you want to do something good. https://www.youtube.com/watch?v=fSjc8vLMg8c
I'll probably be starting my first job soon and have learned both front-end and back-end during my studies. After 15 applications, I received an offer for a backend position. I'm just afraid of specializing too early, but tbh, I can't find any full-stack positions for beginners. At least, they're rejecting me.
Why is it necessary to put "description" etc. at the front of show_task when add_task already has "description" etc. everywhere? tasks = [] def add_task(description, due_date, priority): task = { "description": description, "due_date": due_date, "priority": priority, "completed": False, } tasks.append(task) def mark_completed(task_index): if 0 <= task_index < len(tasks): tasks[task_index]["completed"] = True else: print("Ungültiger Index für…
Hi, my name is Ben. I'm 15 years old and have knowledge of HTML, CSS, JS, and Python. I was wondering if I could find a part-time job that pays €450-520. I could also learn a language or two for that. Regards and thanks in advance for answers.
In this track by Travis Scott the entire voice is AI, so with artificial intelligence, not a word is spoken on this beat. Doesn't something like this pose a huge threat to the music industry because it actually sounds absolutely original https://www.youtube.com/watch?v=1ua0NG-02pc
Or rather not? Is anyone studying this who can help me? I'm thinking about enrolling there in June.
You go through the text letter for letter.
Each letter is converted into a number (a=0,…z=25).
You add to the number the displacement value of the chiffre.
You calculate the rest of the number when divided by 26. (referred to as “mod” or “modulo”.) As a result, you make sure that the numbers that are larger than 26 after the addition start again at 0.
Finally, you turn the number back into a letter.