Question
In Python ! 1)Assign True to the variable has_dups if the string s1 has any duplicate character (that is if any character appears more than
In Python !
1)Assign True to the variable has_dups if the string s1 has any duplicate character (that is if any character appears more than once) and False otherwise
2)Write an expression that evaluates to True if the str associated with s starts with "p"
3)Write an expression whose value is True if all the letters in the str associated with s are all lower case.
4)Given variables first and last, each of which is associated with a str, representing a first and a last name, respectively. Write an expression whose value is a str that is a full name of the form "Last, First". So, if first were associated with "alan" and last with "turing", then your expression would be "Turing,Alan". (Note the capitalization! Note: no spaces!) And if first and last were "Florean" and "fortescue" respectively, then your expression's value would be "Fortescue,Florean".
5)Write an expression whose value is the result of converting the int value 42 to a str (consisting of the digit 4 followed by the digit 2).
6)Assume the variable date has been set to a string value of the form mm/dd/yyyy, for example 09/08/2010. (Actual numbers would appear in the string.) Write a statement to assign to a variable named dayStr the characters in date that contain the day. Then set a variable day to the integer value corresponding to the two digits in dayStr.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started