Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

learningtocode

  1. jsh4

    Harvard CS50: support & accountability group 👥

    Hi all, Newbie coder here. After watching this video, I've finally decided to dive in and start on Harvard's CS50 course... Is anyone here interested in being part of a mastermind/accountability group for support & to keep one another on track? In my experience these small groups can work...
  2. T

    Frustrated. Doing freecodecamp.org, finished most of it, but cannot for the life of me build something from scratch

    Hello everyone, I find coding very fascinating, so I took the first three courses on freecodecamp.org titled: Basic HTML and HTML5, Basic CSS, and Applied Visual Design. So, I thought that I could apply what I learned by making something in Visual Studio code; however, I just realized that I...
  3. User8574

    Python .get doesn't seem to work :/

    digit_mapping = { "1" == "One", "2" == "Two", "3" == "Three", "4" == "Four" } phone = input("Phone: ") output = "" for digits in phone: output = output + digit_mapping.get(digits, "!") + " " print(output) The .get function is shown as an error (btw this is Python...
Back
Top Bottom