Posts

Showing posts from September, 2020

variable code

  character_name = "Spandan" character_age = "15" gender_type = "he" character_gender = "boy" character_location = "India" print ( "There is a boy who is known to everyone as " +character_name + "." ) print ( "well " +gender_type+ " was a " +character_age + " years old " +character_gender+ "," ) print ( "He lived in the country of " +character_location+ "." ) print ( "He really liked the name " +character_name+ "." ) print ( "But he did not like to be " +character_age + " years old" )

first code

  print ( "Get the secret word! \n you win when you get it" ) secret_word = "Tiger" guess= "" while guess != secret_word: guess = input ( "enter guess: " ) print ( "Congrats you win!" )