BaşlayınÜcretsiz Başlayın

Correcting string errors

It's easy to make errors when you're trying to type strings quickly.

  • Don't forget to use quotes! Without quotes, you'll get a name error.
owner = DataCamp
  • Use the same type of quotation mark. If you start with a single quote, and end with a double quote, you'll get a syntax error.
fur_color = "blonde'

Someone at the police station made an error when filling out the final lines of Bayes' Missing Puppy Report. In this exercise, you will correct the errors.

Bu egzersiz

Introduction to Data Science in Python

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Correct the mistakes in the code so that it runs without producing syntax errors.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# One or more of the following lines contains an error
# Correct it so that it runs without producing syntax errors
birthday = "2017-07-14'
case_id = 'DATACAMP!123-456?
Kodu Düzenle ve Çalıştır