KnowledgeBoat Logo

Computer Science

Which of the following is/are correct ways of creating strings ?

  1. name = Jiya
  2. name = 'Jiya'
  3. name = "Jiya"
  4. name = (Jiya)

Python Funda

28 Likes

Answer

name = 'Jiya'

name = "Jiya"

Answered By

7 Likes


Related Questions