python-strings
There are 41 repositories under python-strings topic.
milaan9/02_Python_Datatypes
Data types specify the different sizes and values that can be stored in the variable. For example, Python stores numbers, strings, and a list of values using different data types. Learn different types of Python data types along with their respective in-built functions and methods.
imnaresh96/practice_python
Python Practice
hsegnam/Mypy
This repository contains the basic concepts and code of Python in Jupyter notebooks and scripts.
imnaresh96/ASSIGNMENT_PYHTON
Python Assignments
havocesp/flynt
A tool to automatically convert old string literal formatting to f-strings
Sophy8281/b-refresh
Python basics refresh
vishalp7887/python-practice
python_practice
Brisinger/dictionary
Understanding Transformation and operations on List containing dictionaries with integers and strings. Implements string manipulation contained within mutable list.
democritus-project/d8s-strings
Democritus functions for working with Python strings.
guna7222/Learning-Python-
This repo is about learning python from basic to advanced level.
Pulkit1822/CSE3011-Python-Programming
This repository contains all the materials for CSE3011-Python-Programming at VIT Bhopal University.
rohaquinlop/faststring
Python library for mutable string manipulation.
silvaarmando/cap02-python-fundamentos-dsa
Python Fundamentos para Análise de Dados - Data Science Academy
sru0309/python_practices
All my python related practice code
arvindk2025/Python-Practice-With-Projects
Welcome to the Python Practice Code Repository! This repository is a collection of Python practice exercises and solutions aimed at helping my improvement and Python programming skills.
bhanuchandrika99/NeuralNetwork-DeepLearning
University of Central Missouri: Spring 2024: CS5720: Neural Network Deep Learning: In Class Programming Assignments
cescedes/Coded-Correspondence
Working with Python strings to decipher the messages received and to encode responses! Strings practice with fun cryptography puzzles.
cescedes/Medical-Insurance-Costs-with-Python
Investigate how different factors affect the prediction of medical insurance costs by practicing many python concepts.
pysem/strings
String utilities for python
Sanders003/password_generator
Password Generator Tool using standard Python Library
sru0309/python_assignment
All Python Assignments
ummeabiha/IntroductionToPython
Python Basic Programs
vishalp7887/python-assignment
python_assignment
abhijeet090102/Pyhton_string
Some string manuplation with python3
candytale55/add_exclamation_Py_3
add_exclamation() takes one parameter named _word_. This function should add exclamation points to the end of _word_ until word is 20 characters long. If _word_ is already at least 20 characters long, just return _word_.
candytale55/check_for_name_in_sentence_Py_3
check_for_name() takes two strings as parameters named _sentence_ and _name_. The function should return _True_ if _name_ appears in sentence in all lowercase letters, all uppercase letters, or with any mix of uppercase and lowercase letters. The function should return _False_ otherwise.
candytale55/count_x_in_word_Py_3
These functions take a string named _word_ and a single or multi character named _x_ as parameters. The function should return the number of times _x_ appears in _word_.
candytale55/every_other_letter_Py_3
function every_other_letter() takes a string named _word_ as a parameter. The function returns a string containing every other letter in word.
candytale55/Is_X_length_Py_3
Function takes a string named _sentence_ and an integer named _x_ as parameters. It returns _True_ if every word in sentence has a length greater than or equal to _x_.
candytale55/make_spoonerism_Py_3
function make_spoonerism() takes two strings as parameters named _word1_ and _word2_. Spoonerism switch the first letters of each word and returns the two new words as a single string separated by a space.
candytale55/reverse_string_Py_3_JS
Function reverse_string() takes a string named _word_ as a parameter. The function should return _word_ in reverse.
candytale55/substring_between_letters_Py_3
substring_between_letters() takes a string named _word_, a single character named _start_, and another character named _end_. This function should return the substring between the first occurrence of _start_ and _end_ in word. If _start_ or _end_ are not in _word_, the function should return _word_. For example, substring_between_letters("apple", "p", "e") should return "pl".
candytale55/unique_english_letters_Py_3
unique_english_letters takes a string word as a parameter. The function should return the total number of unique letters in the string. Uppercase and lowercase letters should be counted as different letters. The list of every uppercase and lower case letter in the English alphabet is in a string "letters".
cescedes/notes
various concepts in python
karankamat/Python
Tutorials on python concepts.