I Blew My Interview Because of This Python Interview Question 😔🐍

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 พ.ย. 2024

ความคิดเห็น • 7

  • @nowyouknow2249
    @nowyouknow2249 2 ปีที่แล้ว +4

    statement= "I am a python developer"
    for word in statement.split(" "):
    if len(word) >= 5:
    statement = statement.replace(word, word[::-1])
    print(statement)

  • @Jcmacielh
    @Jcmacielh 2 ปีที่แล้ว +3

    " ".join([word for word in statement[::-1].split(" ") if len(word) >= 5])

    • @CodeJana
      @CodeJana  2 ปีที่แล้ว

      Thanks

    • @saravananramanathan8311
      @saravananramanathan8311 2 ปีที่แล้ว

      u do understand that this solution is incomplete right ? you are simply taking the words >=5 and reversing them , but the final answer have to be in the same order of the initial statement as a string with just the words >=5 reversed.

  • @caricatureadda3867
    @caricatureadda3867 2 ปีที่แล้ว +2

    output = " ".join([stat[::-1] if len(stat)>=5 else stat for stat in statement.split(' ')])