Python Editor

Name in Upper Case

 #Write a program to print the country in Upper case.   Hint - Use Strings function

country="united states"

3 comments:

  1. country="united states"
    print(country)

    ReplyDelete
  2. states = ["Masssachusets", "Main", "Vermont"]
    teams = ["Team1", "Team2"]
    for stete in states:
    for team in teams:
    print(states)

    ReplyDelete
  3. a = 4
    while a < 20:
    print(a)
    if a == 15:
    break
    a +=1

    ReplyDelete