The code example that assigns "hi yeah" to s3 is:
s3=s2[3:7]+ s2[6:11]
Which of the following code examples assigns hi yeah to s3?
s1="Python is the best language ever!"
s2="Python yeah!"
Group of answer choices
s3=s2[3]+s2[7]+s2[6:11]
s3=s2[3]+s1[7]+s2[6:11]
s3=s1[3]+s1[7]+s1[6:10]
s3=s2[3:7]+ s2[6:11]
1 answer